Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
joeandmotorboat.com
Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
1–10 of 10 posts
Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#2Its good to see all three products do well, keeping in mind the benchmark scenario is highly artificial. The results show that in the case of these three products you should make your choice based on what kind of app you need to build and trust that they each perform well.
Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#3Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#4I don't know as much about the other two, but they seem somewhat Erlang-centric. Which isn't a bad thing, but makes them less useful for me.
Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#5Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#6What about lighttpd?
Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#7Its key to point out is that you would normally use nginx as a proxy to some other app server (nginx->mongrel) while with an erlang http server, it _is_ your app server and you may not need to add something like nginx in front. Its good to see all three products do well, keeping in mind the benchmark scenario is highly artificial. The results show that in the case of these three products you should make your choice b…
Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#8Its key to point out is that you would normally use nginx as a proxy to some other app server (nginx->mongrel) while with an erlang http server, it _is_ your app server and you may not need to add something like nginx in front. Its good to see all three products do well, keeping in mind the benchmark scenario is highly artificial. The results show that in the case of these three products you should make your choice b…
Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#9Re: Nginx vs Yaws vs MochiWeb : Web Server Performance Deathmatch, Part 2
#10Right now I use Apache 2.2.x in front of a pack of Mongrels and mod_cache is enabled to cache content based on Expires headers. (I tried Passenger over the summer but it still had issues at the time).
Now with mod_cache, mod_proxy_balancer and my mongrels I have a very stable setup with only two programs. What sort of benefit would there be to using nginx and say varnishd along with mongrels?
I know varnish is a much more flexible cache than mod_cache, but would there really be a performance boost of any note?