7 lines
329 B
Ruby
7 lines
329 B
Ruby
# Be sure to restart your server when you modify this file.
|
|
|
|
if defined?(MEMCACHE_SERVERS)
|
|
Rails.application.config.session_store :mem_cache_store, :memcache_server => MEMCACHE_SERVERS, :namespace => "rails:session", :key => "_osm_session"
|
|
else
|
|
Rails.application.config.session_store :cache_store, :key => "_osm_session"
|
|
end
|