I have written a si开发者_运维技巧mple erlang app using gen_server. When starting it with application:start(myapp), I get the following tuple...
I have a list of tuples, say, [{x, a, y}, {x, b, y}]. Is there a built-in function (or can I use a combination of BIFs) to delete all tuples matching {x, _, y}, as in match and delete based on the
I have an Erlang application running as a daemon, configured as an SSH server.I can connect to it with an SSH client and I get the standard Erlang REPL.
I\'ve been reading a lot about how Scala and Erlang does lightweight threads and their concurrency model (actors).
Is there a way to have a full interpreter in Erlang, not just a \"shell\". Since it is a dynamic language, not being able to define named functions in the interpreter is a little bit disa开发者_开发
开发者_如何学运维I am currently using c(module_name) to build my Erlang files one by one. How can the build process for Erlang be handle when they have multiple files?I start out by using Erlang ma
I\'ve got a module that I\'m attempting to turn into a proper OTP application.Currently, the module has start/0 which starts a genserver which supplies configuration data read from a config file.It th
I\'m trying to add international support for a website based on the Erlang Web 1.4. I would like to have a couple of links on every page (the notorious Country flags) that allow the user to set his l
How do I log all process crashes into a file instead of a tty ? I\'ve read in the documentation that there are some s开发者_开发技巧tandard Erlang modules that can do it (SASL, error_logger), but unfo
W开发者_运维知识库hile I\'m learning a new language, I\'ll typically put lots of silly println\'s to see what values are where at specific times.It usually suffices because the languages typically hav