X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4d7c3db62c53dab2e68f854cf3d42f2e9a92fded..031afed7aae4492a96bdf389ffc504a9955677ad:/config/initializers/session_store.rb diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index 02548e803..17173d536 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -1,35 +1,7 @@ # Be sure to restart your server when you modify this file. if defined?(MEMCACHE_SERVERS) - unless STATUS == :database_offline or STATUS == :database_readonly - module Rack - module Session - class Memcache - def get_session(env, sid) - with_lock(env, [nil, {}]) do - unless sid and session = @pool.get(sid) - if sid and s = ActiveRecord::SessionStore::SqlBypass.find_by_session_id(sid) - session = s.data - s.destroy - else - sid, session = generate_sid, {} - end - - unless /^STORED/ =~ @pool.add(sid, session) - raise "Session collision on '#{sid.inspect}'" - end - end - [sid, session] - end - end - end - end - end - end - - cache = MemCache.new(:namespace => "rails:session", :string_return_types => true) - - OpenStreetMap::Application.config.session_store :mem_cache_store, :cache => cache, :key => "_osm_session" + OpenStreetMap::Application.config.session_store :mem_cache_store, :memcache_server => MEMCACHE_SERVERS, :namespace => "rails:session", :key => "_osm_session" else OpenStreetMap::Application.config.session_store :cache_store, :key => '_osm_session' end