how much concurrent http request can erlang handle
Posted
by user209123
on Stack Overflow
See other posts from Stack Overflow
or by user209123
Published on 2010-04-19T17:00:42Z
Indexed on
2010/04/19
17:03 UTC
Read the original article
Hit count: 254
I am developing a application for benchmarking purposes, for which I require to create large number of http connection in a short time, I created a program in java to test how much threads is java able to create, it turns out in my 2GB single core machine, the limit is variable between 5000 and 6000 with 1 GB of memory given to JVM after which it hits outofmemoryerror with heap limit reached.
It is suggested around that erlang will be able to generate much more concurrent processes, I am willing to learn erlang if it is capable of solving the problem , although I am interested in knowing can erlang be able to say generate somewhere around 100000 processes which are essentially http requests waiting for responses, in a matter of few seconds without reaching any limit like memory error etc.,
© Stack Overflow or respective owner