I remember finding a C++ (or maybe plain C) library which does thread pooling, socket polling and other stuff, needed to write a high-performance server on Linux. (And this library was not Boost itself — but it could be that it used Boost.)

As usual, I can't remember the name of the library. Any guesses?

Update: that was not ACE.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Spserver uses libevent and so should have good performance on all platforms.

You could use Boost.ASIO directly and thread pool:

Multiple threads may call io_service::run() to set up a pool of threads from which completion handlers may be invoked ... all threads that have joined an io_service's pool are considered equivalent, and the io_service may distribute work across them in an arbitrary fashion.

link|improve this answer
Hurray! That was SPServer I was thinking about! Thank you! – Alexander Gladysh Sep 7 '09 at 7:34
feedback

Perhaps ACE?

link|improve this answer
No, that was not ACE. I've updated the question. – Alexander Gladysh Sep 6 '09 at 23:03
feedback

POCO? libevent? Got any further clues?

link|improve this answer
Sorry, not POCO nor libevent. But thanks for the links anyway! – Alexander Gladysh Sep 7 '09 at 7:35
feedback

Qt?

link|improve this answer
No, not QT, sorry. It was SPServer. – Alexander Gladysh Sep 7 '09 at 17:08
feedback

Your Answer

 
or
required, but never shown

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