RubyFlow The Ruby and Rails community linklog

How to get 4x the performance out of Heroku with Unicorn

Unicorn is a ruby http server that starts one master process listening on one port and forks several worker processes. Every incoming client request is handed to a worker by the master and when finished the master returns the result to the client. Thus it only needs to listen on one port, but can work on several concurrent requests. Take a look how!

How to get 4x the performance out of Heroku with Unicorn

Railsonfire provides a continuous integration and continuous deployment platform for mobile and web applications.

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in