aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/rails_on_rack.textile
diff options
context:
space:
mode:
authorBrian Durand <brian@embellishedvisions.com>2011-10-21 13:13:29 -0500
committerBrian Durand <brian@embellishedvisions.com>2011-10-21 13:13:29 -0500
commit2b04c2f66e3cf5abbbf118eaa1e692b9e1380e4e (patch)
treee22522de3a10e9522a31fb92bca9191a296b6db0 /railties/guides/source/rails_on_rack.textile
parente2aaae16292640f2314be205d7782f6eaf2b1cf5 (diff)
downloadrails-2b04c2f66e3cf5abbbf118eaa1e692b9e1380e4e.tar.gz
rails-2b04c2f66e3cf5abbbf118eaa1e692b9e1380e4e.tar.bz2
rails-2b04c2f66e3cf5abbbf118eaa1e692b9e1380e4e.zip
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.|