Rack的HTTP服务器:Unicorn

jopen 12年前

Unicorn 是一个为运行 Rack 应用的HTTP服务器。Unicorn  是一个利用Unix的高级特性开发的,只为具备低延迟,高带宽的连接的客户服务的HTTP服务器软件。慢的客户服务需要通过放置一个反向代理,充分缓冲的要求,在与客户的Unicorn 和缓慢的反应能力。

安装方式:gem install unicorn

Features

  • Designed for Rack, Unix, fast clients, and ease-of-debugging. We cut out everything that is better supported by the operating system, nginx or Rack.

  • Compatible with both Ruby 1.8 and 1.9. Rubinius support is in-progress.

  • Process management: Unicorn will reap and restart workers that die from broken apps. There is no need to manage multiple processes or ports yourself. Unicorn can spawn and manage any number of worker processes you choose to scale to your backend.

  • Load balancing is done entirely by the operating system kernel. Requests never pile up behind a busy worker process.

  • Does not care if your application is thread-safe or not, workers all run within their own isolated address space and only serve one client at a time for maximum robustness.

  • Supports all Rack applications, along with pre-Rack versions of Ruby on Rails via a Rack wrapper.

  • Builtin reopening of all log files in your application via USR1 signal. This allows logrotate to rotate files atomically and quickly via rename instead of the racy and slow copytruncate method. Unicorn also takes steps to ensure multi-line log entries from one request all stay within the same file.

  • nginx-style binary upgrades without losing connections. You can upgrade Unicorn, your entire application, libraries and even your Ruby interpreter without dropping clients.

  • before_fork and after_fork hooks in case your application has special needs when dealing with forked processes. These should not be needed when the “preload_app” directive is false (the default).

  • Can be used with copy-on-write-friendly memory management to save memory (by setting “preload_app” to true).

  • Able to listen on multiple interfaces including UNIX sockets, each worker process can also bind to a private port via the after_fork hook for easy debugging.

  • Simple and easy Ruby DSL for configuration.

  • Decodes chunked transfers on-the-fly, thus allowing upload progress notification to be implemented as well as being able to tunnel arbitrary stream-based protocols over HTTP

项目主页:http://www.open-open.com/lib/view/home/1363253395421