Show HN: Condor – A library for building scalable TCP servers in Erlang
1–10 of 11 posts
Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#2Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#3How Condor differentiate itself from Ranch?
Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#4Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#5Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#6Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#7Also, it's frankly hard to judge your claim of scalability, when you haven't provided any data. How many millions of connections can this handle (on which particular hardware), how many thousands of connections per second, how many gigabits of data transfer can you push, how many connections can you gracefully close per second, etc. What erlang settings did you have to tweak, what operating system limits did you have to tweak, etc to get there.
Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#8Earlier quoted context omitted.
Doesn't native erlang handle that? With {packet, Len} and {active, once}?
Not the buffering.
Why is another level of buffering needed?
Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#9There’s no Netty type thing for Erlang? Netty is so nice to have on the JVM, I don’t know much about TCP and it lets me be dangerous, asynchronously.
Re: Show HN: Condor – A library for building scalable TCP servers in Erlang
#10There’s no Netty type thing for Erlang? Netty is so nice to have on the JVM, I don’t know much about TCP and it lets me be dangerous, asynchronously.
The Erlang VM (BEAM) is non-blocking by design, you don't need anything like Netty on BEAM.