I need a webserver to serve up very simple POST/GET requests as JSON. I don't need MVC, Rails, Django. I need something that takes up very little memory, preferrably around 5K per reqeust. The webserver will talk to backend services like Scribe using Facebook Thrift. Each http request will also access a SQLLite database, one for each user and user's data do not overlap. It will serve up static html files as well as the json webservice. I am considering the following: Njinx with PHP, Kepler from Lua, rolling my own with libevent or libev perhaps calling out to Lua, or MochiWeb. Which of these options are best and what other options are out there? I can use PHP, python, or Lua for basic scripting and even could do basic C. I am leaning towards some sort of Erlang solution.
|
|
Take a look at klone at koanlogic.com site ... being targeted at embedded systems it's very small, and incidentally very fast too: http://john.freml.in/teepeedee2-vs-klone . It can be scripted in C/C++ (ultra performant) or usual PHP/CGI (a lot less performant), depending on skills/taste ... |
||
|
|
|
|
So all of the above can perform well, but how do each of the lightweight webserver perform memory footprint wise? And how do you measure the footprint? |
||
|
|
|
|
Cherokee webserver at www.cherokee-project.com |
||
|
|
|
|
John, As one of the authors of Webmachine, I'm happy to help you out. One reason I'm following up is that even though there's no JSON-related code in Webmachine, you might find it useful to know that we use it on a daily basis for processing many different JSON requests and responses. It's simple, cleanly extensible, and performs reasonably well. If you just wanted static delivery, then something like nginx or lighttpd would be an obvious way to go. For a mix of static and dynamic requests and built-in good Web behavior, you may find Webmachine a good fit. Check out the trivial example code at http://code.google.com/p/webmachine/wiki/ExampleResources and the recent posts on the blog at http://blog.therestfulway.com/ for more information. It has worked out well for us; if you have questions feel free to drop me a line. -Justin |
||
|
|
|
|
Another followup here. Part of my original questions was motivated by just finding something that let me serve up JSON super fast and under huge loads and in a REST oriented way and then gets out of the way. I found this promising framework called WebMachine that is built on top of Mochiweb that looks promising. http://code.google.com/p/webmachine/ I will try to let everybody know what I ultimately decide to use. |
||
|
|
|
|
Yeah I just ran some little tests comparing mochiweb, ruby mongrel and nginx on my macbook pro. I put a little load of 10 conn/sec for approx 30 secons on each of them and of course as expected Mongrel couldn't take it, not having concurrency with a proxy or cluster. Test: httperf --hog --client=0/1 --server=localhost --port=8000 --uri=/ --rate=10 --send-buffer=4096 --recv-buffer=16384 --num-conns=10000 --num-calls=100
So duh, Nginx and Mochiweb can both handle a light load. Nginx was much faster at a sprint to 10,000 requests (concurrency 1) however. Test: httperf --hog --client=0/1 --server=localhost --port=80 --uri=/ --send-buffer=4096 --recv-buffer=16384 --num-conns=10000 --num-calls=1
Hmm, but can Nginx handle this type of load? A Millon-user Comet application. |
||
|
|
|
Mochiweb is super lightweight, and handles a stupidly high load. |
||
|
|
|
|
Since you mentioned Python, you might want to take a look at web.py, for a very simple way to listen on port 80 and map URLs to actions. It'll also run via your favorite CGI if you want to pair with a standard webserver (i.e. behind Nginx/FastCGI) -- and I'll second the recs of Nginx for massive concurrency on static files. (They used it with Lighttpd at Reddit.) thttpd is the other webserver I'd look at, especially if memory is extremely scarce, like on an embedded system. |
||
|
|
|
Hands down |
||
|
|
|
There's an article on IBM developerWorks with a pretty extensive list of "lightweight" web servers: |
||
|
|
|
|
Lighttpd has an excellent footprint, to the extent that most of your memory will probably taken up by whatever language you choose to use (unless you go the C route, which is really not recommended). |
||
|
|
