What is a good choice for a simple http server library? It does not require high performance. I'm rather looking for something simple for some REST / JSON ("API") messages.
It should be able to work in a multi-threaded environment and should be able to handle a large POST request.
Any suggestions? I already tried cpp-netlib, but it seems too complicated for such an easy task ...
Edit: I'm looking for something really light and simple. For instance. like Sinatra in the world of Ruby. Poco is another example of a library that is too heavy.
source share