rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
$ git log --pretty=format:'%h %s (%cs)%d' v0.1.1 --
ad5ed77 Rainbows! 0.1.1 (2009-10-05)
	(tag: v0.1.1)
09e93cd less error-prone timeouts for Thread models (2009-10-05)
d8d6654 thread_spawn: fix timeout leading to worker death (2009-10-05)
09535c1 Thread* models: cleanup timeout management (2009-10-05)
e4057cf local.mk.sample: fix revactor dependency (2009-10-05)
112fe92 cleanup temporary file usage in tests (2009-10-05)
d7f1ced tests: allow "make V=2" to set TEST_OPTS += -x (2009-10-05)
bd3d1c6 local.mk.sample: sync to my current version (2009-10-05)
df8543d Add top-level "test" target for make (2009-10-05)
b3b03a0 tests: quiet down bin installation (2009-10-05)
...

$ git cat-file blob v0.1.1:README
= Rainbows! Unicorn for sleepy apps and slow clients

Rainbows! is a HTTP server for sleepy Rack applications.  It is based on
Unicorn, but designed to handle applications that expect long
request/response times and/or slow clients.  For Rack applications not
heavily bound by slow external network dependencies, consider Unicorn
instead as it simpler and easier to debug.

== \Rainbows! is about Diversity

We aim to support as many concurrency models as we can because they all
suck; differently.

For network concurrency, models we currently support are:

* {:ThreadSpawn}[link:Rainbows/ThreadSpawn.html]
* {:ThreadPool}[link:Rainbows/ThreadPool.html]
* {:Revactor}[link:Rainbows/Revactor.html]

We have {more on the way}[link:TODO.html] for handling network concurrency.
Additionally, we also use multiple processes (managed by Unicorn) for
CPU/memory/disk concurrency.

== Features

* Designed for {Rack}[http://rack.rubyforge.org/], the standard for
  modern Ruby HTTP applications.

* Built on {Unicorn}[http://unicorn.bogomips.org/], inheriting its
  process/socket management features
  such as transparent upgrades and Ruby configuration DSL.

* As with Unicorn, it is able to stream large request bodies off the
  socket to the application while the client is still uploading.  Since
  \Rainbows! can handle slow clients, this feature is more useful than
  it is with Unicorn.

* Combines heavyweight concurrency (worker processes) with lightweight
  concurrency (Actors or Threads), allowing CPU/memory/disk to be scaled
  independently of client connections.  Alternative concurrency models
  (listed in the TODO) will be supported as we find time for them.

== Applications

\Rainbows is for the odd things Unicorn sucks at:

* 3rd-party APIs (to services outside your control/LAN)
* OpenID consumers (to providers outside your control/LAN)
* Reverse proxy implementations with editing/censoring
  (to upstreams outside your control/LAN)
* Comet
* BOSH (with slow clients)
* HTTP server push
* Long polling
* Reverse Ajax

== License

\Rainbows! is copyright 2009 by all contributors (see logs in git).
It is based on Mongrel and Unicorn and carries the same license.

Mongrel is copyright 2007 Zed A. Shaw and contributors. It is licensed
under the Ruby license and the GPL2. See the included LICENSE file for
details.

\Rainbows! is 100% Free Software.

== Install

You may download the tarball from the Rainbows project page on Rubyforge
and run setup.rb after unpacking it:

http://rubyforge.org/frs/?group_id=8977

You may also install it via Rubygems on Rubyforge:

  gem install rainbows

== Usage

=== for Rack applications

In APP_ROOT (where config.ru is located), run:

  rainbows

\Rainbows! will bind to all interfaces on TCP port 8080 by default.

=== Configuration File(s)

\Rainbows! will look for the config.ru file used by rackup in APP_ROOT.

For deployments, it can use a config file for Unicorn and
\Rainbows!-specific options specified by the +--config-file/-c+
command-line switch.  \Rainbows! accepts all options found in
{Unicorn::Configurator}[http://unicorn.bogomips.org/Unicorn/Configurator.html]
as well as the "\Rainbows!" block, so you can have the following in your
config file:

    Rainbows! do
      use :Revactor
      worker_connections 128
    end

== Development

* git: git://git.bogomips.org/rainbows.git
* cgit: http://git.bogomips.org/cgit/rainbows.git

Inline patches (from "git format-patch") to the mailing list are
preferred because they allow code review and comments in the reply to
the patch.

We will adhere to mostly the same conventions for patch submissions as
git itself.  See the Documentation/SubmittingPatches document
distributed with git on on patch submission guidelines to follow.  Just
don't email the git mailing list or maintainer with \Rainbows! patches.

== Disclaimer

There is NO WARRANTY whatsoever if anything goes wrong, but let us know
and we'll try our best to fix it.

== Contact

All feedback (bug reports, user/development dicussion, patches, pull
requests) go to the mailing list/newsgroup.  Patches must be sent inline
(git format-patch -M + git send-email).  No subscription is necessary
to post on the mailing list.  No top posting.  Address replies +To:+ (or
+Cc:+) the original sender and +Cc:+ the mailing list.

* email: mailto:rainbows-talk@rubyforge.org
* archives: http://rubyforge.org/pipermail/rainbows-talk
* subscribe: http://rubyforge.org/mailman/listinfo/rainbows-talk

# heads (aka `branches'):
$ git for-each-ref --sort=-creatordate refs/heads \
	--format='%(HEAD) %(refname:short) %(subject) (%(creatordate:short))'
* master       Rainbows! 5.2.1 (2020-01-29)
  em-deferred  eventmachine: wait for deferred actions to finish (2017-01-09)

# tags:
$ git for-each-ref --sort=-creatordate refs/tags \
	--format='%(refname:short) %(subject) (%(creatordate:short))'
v5.2.1       Rainbows! 5.2.1 (2020-01-29) tar.gz
v5.2.0       Rainbows! 5.2.0 (2019-01-05) tar.gz
v5.1.1       Rainbows! 5.1.1 (2017-04-02) tar.gz
v5.1.0       Rainbows! 5.1.0 - rack 2.x compat, EM fixes (2017-01-12) tar.gz
v5.0.0       Rainbows! 5.0.0 - maintained as long as anybody uses it! (2015-11-25) tar.gz
v4.7.0       Rainbows! 4.7.0 - updates for ruby 2.3.0dev (2015-10-19) tar.gz
v4.6.2       Rainbows! 4.6.2 - see you on the other side (2014-05-12) tar.gz
v4.6.1       rainbows 4.6.1 - EventMachine fixes (2014-02-02) tar.gz
v4.6.0       Rainbows! 4.6.0 - fix unicorn 4.8.0 compatibility (2014-01-17) tar.gz
v4.5.0       Rainbows! 4.5.0 - hijacking support (2013-02-27) tar.gz
...

# associated public inboxes:
# (number on the left is used for dev purposes)
            https://yhbt.net/rainbows-public

git clone https://yhbt.net/rainbows.git