Xsocket
Friday, November 30th, 2007 I’ve written a fair few TCP/IP servers in my time. In C, always based around the accept() and fork() model. In Java, both using the similar accept()/Thread.start() model, and with the schmancy NIO select() approach.
Now, really, most of us don’t have to worry about the massive loads that make process spawning overheads or thread […]