diff options
author | Jonathan Baudanza <jon@jonb.org> | 2012-12-30 20:21:20 -0800 |
---|---|---|
committer | Jonathan Baudanza <jon@jonb.org> | 2012-12-30 20:21:20 -0800 |
commit | 3511e3f449357107f9599549438147b2cadbb8e1 (patch) | |
tree | 7f28ebb77887c74b75e67195a88255a00fdbe8ca | |
parent | 46af32aa50cb9fda2cbefb124ef0adf3116137ec (diff) | |
download | rails-3511e3f449357107f9599549438147b2cadbb8e1.tar.gz rails-3511e3f449357107f9599549438147b2cadbb8e1.tar.bz2 rails-3511e3f449357107f9599549438147b2cadbb8e1.zip |
Update guides/source/rails_on_rack.md
Rack::Lock actually sets rack.multithread to `false`, not `true`.
Presumably because once inside the mutex, the app can function as if it were single threaded.
-rw-r--r-- | guides/source/rails_on_rack.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index 1fac6d9883..ac355b4a08 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -229,7 +229,7 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol **`Rack::Lock`** -* Sets `env["rack.multithread"]` flag to `true` and wraps the application within a Mutex. +* Sets `env["rack.multithread"]` flag to `false` and wraps the application within a Mutex. **`ActiveSupport::Cache::Strategy::LocalCache::Middleware`** |