C++ simple asynchronous server library
Is there any 开发者_如何学JAVAc++ library that helps implementing a simple and efficient HTTP server able to handle a very large number of concurrent connections? I'd need something very similar to python's tornado, but for c++
Thanks
There is boost ASIO library.
I'm probably a bit late to this party, but libevent comes with an included HTTP server.
精彩评论