I've recently bumped into something called IOCP on the windows platform, to be more precise: Input/Output Control Ports. This seems to be the most efficient way to code your server software when it needs to hold thousands of users concurrently. (Correct me if I'm wrong, but thread-per-socket, polling, and asynchronous callbacks (thread on every callback) are not efficient enough.)

I am wondering if there are any 3rd party libraries available that implement this concept. I know the win32 api supplies us with CreateIoCompletionPort, FreeBSD has kqueue and linux in general can use /dev/epoll that works somewhat similarly... But isn't there a crossplatform library (such as boost::thread) that handles this stuff for me?

link|improve this question

Actually IOCP stands for I/O completion port not 'control port'. – Len Holgate Nov 27 '09 at 22:16
feedback

2 Answers

up vote 3 down vote accepted

Have you looked at boost::asio? I'm not sure if it has all this functionality yet, but I believe that's one of the things it's intended for.

link|improve this answer
Now why didn't I think of that :) – Daniel Sloof Jan 3 '09 at 12:30
feedback

libevent works on a number of *nix OSes and also runs on Windows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.