Old box, dumb code, few thousand connections, no big deal
rachelbythebay.com
Old box, dumb code, few thousand connections, no big deal
1–10 of 288 posts
Re: Old box, dumb code, few thousand connections, no big deal
#2Preach it, sister!
Re: Old box, dumb code, few thousand connections, no big deal
#3Re: Old box, dumb code, few thousand connections, no big deal
#4Re: Old box, dumb code, few thousand connections, no big deal
#5Honest question: why go through the hassle of multiplexing waiting in a single thread only to dispatch to a thread per client anyway? Simply using blocking IO for the clients in those threads should be much simpler right?
Re: Old box, dumb code, few thousand connections, no big deal
#6Honest question: why go through the hassle of multiplexing waiting in a single thread only to dispatch to a thread per client anyway? Simply using blocking IO for the clients in those threads should be much simpler right?
Re: Old box, dumb code, few thousand connections, no big deal
#7And this is to the detriment of all of us. That’s why you’ll never hear me call myself an engineer.
Re: Old box, dumb code, few thousand connections, no big deal
#8Honest question: why go through the hassle of multiplexing waiting in a single thread only to dispatch to a thread per client anyway? Simply using blocking IO for the clients in those threads should be much simpler right?
Re: Old box, dumb code, few thousand connections, no big deal
#9Re: Old box, dumb code, few thousand connections, no big deal
#10The C10k problem was challenging around the turn of the century. I suppose it's now not. I wonder how much CPU would be saved using an event-based architecture.