README.md in goliath-0.9.0 vs README.md in goliath-0.9.1

- old
+ new

@@ -21,13 +21,10 @@ ## Getting Started: Hello World require 'goliath' class Hello < Goliath::API - # reload code on every request in dev environment - use ::Rack::Reloader, 0 if Goliath.dev? - def response(env) [200, {}, "Hello World"] end end @@ -53,11 +50,11 @@ * How does Goliath compare to Mongrel, Passenger, Unicorn? * Mongrel is a threaded web-server, and both Passenger and Unicorn fork an entire VM to isolate each request from each other. By contrast, Goliath builds a single instance of the Rack app and runs all requests in parallel through a single VM, which leads to a much smaller memory footprint and less overhead. * How do I deploy Goliath in production? - * We recommend deploying Goliath behind a reverse proxy such as HAProxy, Nginx or equivalent. Using one of the above, you can easily run multiple instances of the same application and load balance between then within the reverse proxy. + * We recommend deploying Goliath behind a reverse proxy such as HAProxy, Nginx or equivalent. Using one of the above, you can easily run multiple instances of the same application and load balance between them within the reverse proxy. ## Guides * [Server Options](https://github.com/postrank-labs/goliath/wiki/Server) * [Middleware](https://github.com/postrank-labs/goliath/wiki/Middleware) @@ -72,15 +69,17 @@ ## Coverage * [Goliath: Non-blocking, Ruby 1.9 Web Server](http://www.igvita.com/2011/03/08/goliath-non-blocking-ruby-19-web-server) * [Stage left: Enter Goliath - HTTP Proxy + MongoDB](http://everburning.com/news/stage-left-enter-goliath/) +* [InfoQ: Meet the Goliath of Ruby Application Servers](http://www.infoq.com/articles/meet-goliath) +* [Node.jsはコールバック・スパゲティを招くか](http://el.jibun.atmarkit.co.jp/rails/2011/03/nodejs-d123.html) ## Discussion and Support * [Source](https://github.com/postrank-labs/goliath) * [Issues](https://github.com/postrank-labs/goliath/issues) * [Mailing List](http://groups.google.com/group/goliath-io) ## License & Acknowledgments -Goliath is distributed under the MIT license, for full details please see the LICENSE file. \ No newline at end of file +Goliath is distributed under the MIT license, for full details please see the LICENSE file.