about summary refs log tree commit homepage
DateCommit message (Collapse)
2009-10-05Rainbows! 0.1.1 v0.1.1
Fixed Ruby 1.8 support (and all 1.9 systems without Revactor). Process-wide timeout handling for the ThreadSpawn concurrency model should now work properly. Small cleanups everywhere. Eric Wong (16): Rakefile: add publish_news target Fix NEWS generation on single-paragraph tag messages README: move RDoc links down to fix gem description README: add install instructions summary: s/slow apps/sleepy apps/g Avoid naming names in LICENSE/README files rainbows/base: cleanup constant include tests: quiet down bin installation Add top-level "test" target for make local.mk.sample: sync to my current version tests: allow "make V=2" to set TEST_OPTS += -x cleanup temporary file usage in tests local.mk.sample: fix revactor dependency Thread* models: cleanup timeout management thread_spawn: fix timeout leading to worker death less error-prone timeouts for Thread models
2009-10-05less error-prone timeouts for Thread models
Avoid calling chmod on "false" leading to NoMethodError and rely entirely on LISTENERS.first being valid.
2009-10-05thread_spawn: fix timeout leading to worker death
2009-10-05Thread* models: cleanup timeout management
Ensure we reset the per-thread time Thread.current[:t] with each connection so we don't timeout long-lived connections.
2009-10-05local.mk.sample: fix revactor dependency
This makes the Ruby 1.9 tests take much longer now, ~14s because the SHA1 test is fairly intensive.
2009-10-05cleanup temporary file usage in tests
mktemp(1) requires files to end with "XXXXXXXX", not just have that template anywhere. Also, add pid files to the TEST_RM_LIST since test failures can leave a pid file dangling. Lastly, since the config.ru files are 100% static, just check them as standalone files in instead of allocating a tempfile on them for easier maintenance.
2009-10-05tests: allow "make V=2" to set TEST_OPTS += -x
Normally we can run "make V=1" for medium verbosity
2009-10-05local.mk.sample: sync to my current version
This allows the "full-test" target to run 1.9 and 1.8 tests together and sets up gem paths so I don't have to load rubygems. Currently I can run "make -j full-test" in 5.3 seconds on my box vs ~20 seconds without the "-j". Hopefully this time continues to stay low as more tests are added...
2009-10-05Add top-level "test" target for make
2009-10-05tests: quiet down bin installation
2009-10-05rainbows/base: cleanup constant include
This was breaking badly under 1.8 since Revactor couldn't be included (the constant is listed once it is declared as an autoload).
2009-10-05Avoid naming names in LICENSE/README files
Everything is logged in git anyways and it'll be easier to hand off to somebody else.
2009-10-05summary: s/slow apps/sleepy apps/g
I think "sleepy" is a better term than "slow" here. "slow" can mean apps that are CPU/memory bandwidth-bound, and Rainbows! sucks at those.
2009-10-05README: add install instructions
2009-10-05README: move RDoc links down to fix gem description
2009-10-05Fix NEWS generation on single-paragraph tag messages
commit 2643f9c34a4fc63ab9533d851a564be93dcc8bdb from Unicorn
2009-10-05Rakefile: add publish_news target
2009-10-05Rainbows! 0.1.0 v0.1.0
Not using the Unicorn version number with this since it's not remotely close to Unicorn in stability.
2009-10-05test for Revactor::TeeInput
We'll be able to use the SHA1 test in other places, too.
2009-10-05huge documentation revamp
2009-10-04limit Rainbows! configuration method exposure
Only inject this method into Unicorn::Configurator to avoid polluting the namespace.
2009-10-04vary defaults for worker_connections
Various concurrency models work and scale differently, pick counts that make a reasonable amount of sense...
2009-10-04Add support for the ThreadSpawn concurrency model
This is somewhat like the original model found in Mongrel, except we refuse to accept() connections unless we have slots available. Even though we support multiple listen sockets, we only accept() synchronously to simplify processing and to avoid having to synchronize ThreadGroup management.
2009-10-04Add new test suite and basic cases
I'd rather write shell scripts in shell than shell scripts in Ruby like was done with Unicorn. We're a *nix-only project so we'll embrace *nix tools to their fullest extent and as a pleasant side-effect these test cases are immune to internal API changes.
2009-10-04revactor: graceful exit if a listening actor dies
It's usually a bad sign if we have unhandled exceptions in the listener loops, so we'll exit just in case.
2009-10-04revactor: implement actor limiting
While we're at it, make it properly 100% message-driven so there's no more busy-waiting and polling for dead actors, No we just wait for client actors to die off and resume listener actors if they stopped accepting.
2009-10-04doc updates; use "Rainbows!", not "Rainbows"
Also add notes about development things and the configuration language which uses "Rainbows!". Calling ourselves "Rainbows!" will help us be taken even more seriously than if the project were just called "Rainbows"
2009-10-04manpage: project is "Rainbows!", not "Unicorn Rainbows"
2009-10-04revactor: allow UNIX domain socket listeners
Revactor may be gaining support for UNIX domain socket listeners soon, so factor out revactorize_listeners into its own method that can conditionally handle UNIX domain sockets if our Revactor version supports it. Patch for Revactor submitted here: http://rubyforge.org/pipermail/revactor-talk/2009-October/000035.html
2009-10-04configuration default tweaks
:Base is default (along with the implied worker_connections=1). This disallows nil for worker_connections, and makes.
2009-10-04README: add pointers to the git repository
2009-10-03thread_pool: Thread#kill! is gone in 1.9.2
So are Thread#terminate! and Thread#exit!, so we use Thread#kill instead.
2009-10-03common Base class for all concurrency models
They're similar enough (especially as far as the constants go) and allows a :Base to be used which basically acts like plain Unicorn but with HTTP keepalive + pipelining support
2009-10-03revactor: workaround for Revactor still using Rev::Buffer
Patch submitted upstream: http://rubyforge.org/pipermail/revactor-talk/2009-October/000034.html
2009-10-03remove Configurator and use Rainbows! block
This allows the server to be configured by doing something like this inside an existing Unicorn configuration file: Rainbows! do use :Revactor worker_connections 50 end This should make it obvious we're using Rainbows-only features.
2009-10-03http_server: simplify use=
I didn't remember extend when this was originally implemented.
2009-10-03configurator: rainbows settings must be in a block
This should make it easier to maintain/read configs that are Rainbows-specific
2009-10-03configurator: set worker_connections correctly
2009-10-03Add setup.rb
2009-10-02set "encoding: binary" for all files
2009-10-02initial revision
No tests yet, but the old "gossamer" and "rainbows" branches seem to be basically working.