From d985d83011109e69e5bd886e4c54693fe60ece79 Mon Sep 17 00:00:00 2001 From: Julien Ammous Date: Sun, 4 Sep 2011 12:21:22 +0300 Subject: [PATCH] show how to configure the fiber_pool size --- config.ru | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.ru b/config.ru index 3687fb3..67053e1 100644 --- a/config.ru +++ b/config.ru @@ -2,5 +2,7 @@ require ::File.expand_path('../config/environment', __FILE__) -use Rack::FiberPool +# include Rack::FiberPool in your stack and +# set the number of fibers in the pool (100 is the current defaukt) +use Rack::FiberPool, :size => 100 run AsyncRails3::Application