-3
votes
1answer
79 views
erlang otp download
what is the different download from http://code.google.com/p/otp-base/ and http://www.erlware.org/?
2
votes
2answers
104 views
Event manager process in erlang. Named processes or Pids?
I have event manager process that dispatches events to subscribers (e.g. http_session_created, http_sesssion_destroyed). If Pid is used instead of named process, I must put it into …
2
votes
5answers
132 views
Erlang gen_server vs stateless module
Hi, I've recently finished Joe's book and quite enjoyed it.
I'm since then started coding a soft realtime application with erlang and I have to say I am a bit confused at the use o …
3
votes
2answers
175 views
How build non-blocking TCP server with ssl encryption
Non-blocking TCP server on trapexit.org explains how to build server based on tcp_gen, but i want to modify this example and make it work with ssl. For now i have completely no ide …
3
votes
2answers
100 views
Using gen_server to encapsulate an mnesia table?
I have a server application made in Erlang. In it I have an mnesia table
that store some information on photos. In the spirit of "everything is a
process" I decided to wrap that …
2
votes
2answers
115 views
Make a process end before timeout
It seems that an erlang process will stay alive until the 5 sec default timeout even if it has finished it's work.
I have gen_server call that issues a command to the window CLI w …
7
votes
2answers
187 views
When to use gen_server in Erlang/OTP applications
Having read Joe Armstrong's book and watched Kevin Smith screencasts I've built a simple OTP application comprised of a single gen_server and single supervisor, bundled together as …
3
votes
6answers
450 views
Erlang : Disallowed Nodes / Maybe Cookie question.
Trying to get two erlang nodes talking to each other : one on a Ubuntu machine and one on Windows XP.
We're getting a "Connection attempt from disallowed node" message which preve …
2
votes
1answer
80 views
In erlang/OTP how do I start appmon to monitor an existing node?
Hi.
I have a running erlang application, launched with this command line
erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin/moch …
1
vote
1answer
150 views
Erlang Takeover failing after successful Failover
I have an application distributed over 2 nodes. When I halt() the first node the failover works perfectly, but ( sometimes ? ) when I restart the first node the takeover fails and …
3
votes
4answers
281 views
Accessing Erlang business layer via REST
For a college project i'm thinking of implementing the business layer in Erlang and then accessing it via multiple front-ends using REST. I would like to avail of OTP features like …
3
votes
4answers
585 views
Process balancing in Erlang
Does anybody knows if there is a sort of 'load-balancer' in the erlang standard library? I mean, if I have some really simple operations on a really large set of data, the overhead …
3
votes
2answers
238 views
What’s the best way to do something periodically in Erlang?
I have a process that needs to do some work every fifteen seconds. I'm currently doing it like this:
-behavior(gen_server).
interval_milliseconds ()-> 15000.
init() …
1
vote
5answers
367 views
Temp file that exists only in RAM?
I'm trying to write an encrpytion using the OTP method. In keeping with the security theories I need the plain text documents to be stored only in memory and never ever written to …
0
votes
4answers
191 views
How do I set up one time password authentication?
I have a home network which I access remotely quite a bit. But I'm worried about security. While I do have strong passwords, I'm worried that someone will acquire my password and u …
