Relative Content

Tag Archive for erlang

When is it NOT good to use actors in akka/erlang?

I’ve been working with akka for 7-8 months now daily.
When I started, I would be working on applications and notice that actors would be used basically anywhere once inside the actor system for communicating between most objects. So I did the same – spin up another actor for x/y/z.

When is it NOT good to use actors in akka/erlang?

I’ve been working with akka for 7-8 months now daily.
When I started, I would be working on applications and notice that actors would be used basically anywhere once inside the actor system for communicating between most objects. So I did the same – spin up another actor for x/y/z.

Client registration for chat application using erlang

I’m newbie to erlang. I have been working on a group chat application using erlang. The thing come into my mind is how to allow users to sign up for an account filling some information such as email address, user name and password. So for that case, how to do this theoretically ? i.e., in witch format I should store the user information into a file and how?