aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb
Commit message (Collapse)AuthorAgeFilesLines
* Explained how to set session expiry through session_store configIain Beeston2015-02-271-0/+4
| | | | | | Most session stores offer an :expire_after option, but it's largely undocumented. Cookie store also supports a number of options via rack (these used to be documented in rails 2.3)
* Improve error message for memcache session store when dalli isn't loaded in appGuillermo Iguaran2012-09-071-2/+6
|
* More fixes for action pack tests with Dalli.Arun Agrawal2012-09-061-3/+3
|
* Revert "Merge pull request #7452 from arunagw/memcached_dalli"Jon Leighton2012-08-311-3/+3
| | | | | | | This reverts commit 7256cb53e0c34e510a4d59a50d120c0358cf1d99, reversing changes made to 6ebe22c3ae716d089af1e5090ddb0d12b31af8ac. Reason: A test was failing.
* More fixes for action pack tests with Dalli.Arun Agrawal2012-08-271-3/+3
|
* session creation methods to a moduleAaron Patterson2012-05-041-10/+1
|
* create a request::session object in the memecache store middlewareAaron Patterson2012-05-041-0/+10
|
* Rely on Rack::Session stores API for more compatibility across the Ruby world.José Valim2010-10-031-46/+7
|
* Revert "Avoid uneeded queries in session stores if sid is not given."José Valim2010-07-291-0/+1
| | | | | | First step to merge Rails and Rack session stores. Rack always expects to receive the SID since it may have different behavior if the SID is nil. This reverts commit e210895ba95e498b9debbf43a3e5ae588bca81f0.
* Avoid uneeded queries in session stores if sid is not given.José Valim2010-07-181-1/+0
|
* Sessions should not be created until written to and session data should be ↵Michael Lovitt2010-06-231-0/+9
| | | | | | | | destroyed on reset. [#4938] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Cut the fat and make session stores rely on request.cookie_jar and change ↵José Valim2010-05-181-2/+2
| | | | set_session semantics to return the cookie value instead of a boolean.
* Lazy require memcache for session middlewareJoshua Peek2009-09-131-40/+35
|
* ActionPack components should no longer have undeclared dependencies.Yehuda Katz + Carl Lerche2009-06-081-0/+1
| | | | | | | * Tests can be run in isolation * Dependencies added * A few tests modified to avoid depending on AS deps not depended on my files they were testing
* Move HTTP libs and middleware into ActionDispatch componentJoshua Peek2009-01-271-0/+51