Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I need to create a simple Chat system like facebook chat an开发者_StackOverflowd a twitter-like app.
I need to open a fire开发者_JAVA技巧wall port so that I can connect from one Erlang node to another. Is there a standard port?You can limit the TCP ports used by Erlang to a specified interval using t
I wanted to use YAML but there i开发者_Go百科s not a single mature YAML library for Erlang. I know there are a few JSON libraries, but was wondering which is the most mature?Have a look at the one fro
I want to do some numerical stuff in Erlang like this: You\'ve got an array with the following values:
How do 开发者_C百科I kill a process in Erlang knowing only the module name used to start it?If it\'s for simple debugging, you could run pman:start(), and just look for the process (double-click on an
Do you use CEAN, copy the source and compile them, copy the BEAM files, or something else. I need to distri开发者_JAVA百科bute some Erlang code and I\'m not sure which to choose.I\'ve been working on
Are there any downsides to passing in an Er开发者_运维知识库lang record as a function argument?There is no downside, unless the caller function and the called function were compiled with different \'v
Normally if I\'d like to have an Erlang process timeout I would use the following construct: receive Msg -> ok; %% handle message
In Erlang is there any way that a message sender can wait on a response, so it only continues execution once the message has been processed?