I am开发者_如何学JAVA doing load testing of my server with number of clients(200, 300, 500, ....3000). For testing I am using windows 64 bit systems and I am running server on one system and clients o
I am implementing a chat server in Erlang. According to my design, each client has a corresponding agent process on the server node that handles the messages. I am writing the PIDs of the agents into
Preface: When I say \"machine\" below, I mean either a physical dedicated server, or a virtual private server.When I say \"node\" I mean, an instance of the erlang virtual machine, of which there coul
Is there an equivalent 开发者_StackOverflowof driver_output_term in the other direction, i.e. sending an Erlang term to the driver without converting it to an iolist first? If not, I presumably should
I\'m trying to generate a formatted string based on a list: [{\"Max\", 18}, {\"Peter\", 25}]开发者_JAVA百科
I have worker processes that needs gathered/calculated data as arguments on start up. This is then needed on re-starts as well. Where should I put the initialization code? Inside the supervisors init?
This question already has answers here: Erlang server, Java client - TCP messages get split? (3 answers)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I have an application developed with Erlang / MNesia and I am trying to implement re开发者_StackOverflowdundancy for MNesia.
I\'m running the following code with dbg:p(client, r): -module(client). -export([start/0, start/2, send/1, net_client/1]).