aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/rails_on_rack.textile
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-10-21 23:41:15 -0700
committerJosé Valim <jose.valim@gmail.com>2011-10-21 23:41:15 -0700
commit3c3129993ad40768577371a0f389a54ff6db7f68 (patch)
treee287eb71e86fab19ee9ecca913461d10fa612c41 /railties/guides/source/rails_on_rack.textile
parentd8b09f3866defcd1bc97717fcc1bbfe9f643bd8c (diff)
parent2b04c2f66e3cf5abbbf118eaa1e692b9e1380e4e (diff)
downloadrails-3c3129993ad40768577371a0f389a54ff6db7f68.tar.gz
rails-3c3129993ad40768577371a0f389a54ff6db7f68.tar.bz2
rails-3c3129993ad40768577371a0f389a54ff6db7f68.zip
Merge pull request #3396 from bdurand/session_cache_store
Add ActionDispatch::Session::CacheStore as a generic way of storing sessions in a cache
Diffstat (limited to 'railties/guides/source/rails_on_rack.textile')
-rw-r--r--railties/guides/source/rails_on_rack.textile5
1 files changed, 3 insertions, 2 deletions
diff --git a/railties/guides/source/rails_on_rack.textile b/railties/guides/source/rails_on_rack.textile
index 57c03b54dc..d6cbd84b1f 100644
--- a/railties/guides/source/rails_on_rack.textile
+++ b/railties/guides/source/rails_on_rack.textile
@@ -166,8 +166,9 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol
|+Rack::Lock+|Sets <tt>env["rack.multithread"]</tt> flag to +true+ and wraps the application within a Mutex.|
|+ActionController::Failsafe+|Returns HTTP Status +500+ to the client if an exception gets raised while dispatching.|
|+ActiveRecord::QueryCache+|Enables the Active Record query cache.|
-|+ActionController::Session::CookieStore+|Uses the cookie based session store.|
-|+ActionController::Session::MemCacheStore+|Uses the memcached based session store.|
+|+ActionDispatch::Session::CookieStore+|Uses the cookie based session store.|
+|+ActionDispatch::Session::CacheStore+|Uses the Rails cache based session store.|
+|+ActionDispatch::Session::MemCacheStore+|Uses the memcached based session store.|
|+ActiveRecord::SessionStore+|Uses the database based session store.|
|+Rack::MethodOverride+|Sets HTTP method based on +_method+ parameter or <tt>env["HTTP_X_HTTP_METHOD_OVERRIDE"]</tt>.|
|+Rack::Head+|Discards the response body if the client sends a +HEAD+ request.|