]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/session_store.rb
Merge branch 'master' into moderation
[rails.git] / config / initializers / session_store.rb
index a9afad2d644d2433c813c488af2fa60ee36c6027..a9c735d6255d40e20cdc2e6eaa5fc206850e6fa0 100644 (file)
@@ -1,8 +1,7 @@
 # Be sure to restart your server when you modify this file.
 
-if STATUS == :database_offline or STATUS == :database_readonly
-  OpenStreetMap::Application.config.session_store :cookie_store, :key => '_osm_session'
+if defined?(MEMCACHE_SERVERS)
+  Rails.application.config.session_store :mem_cache_store, :memcache_server => MEMCACHE_SERVERS, :namespace => "rails:session", :key => "_osm_session"
 else
-  ActiveRecord::SessionStore.session_class = ActiveRecord::SessionStore::SqlBypass
-  OpenStreetMap::Application.config.session_store :active_record_store, :key => '_osm_session'
+  Rails.application.config.session_store :cache_store, :key => "_osm_session", :cache => ActiveSupport::Cache::MemoryStore.new
 end