Displaying 1 result from an estimated 1 matches for "fanopic_dev".
2008 Jul 15
1
sex expire time for Sessions in memcached
...SQL query. Yesterday I switched to memcache for
storing sessions, however I can''t set an expireation period.
My current config is this:
========================
memcache_options = {
:c_threshold => 10_000,
:compression => false,
:debug => false,
:namespace => ''fanopic_dev'',
:readonly => false,
:urlencode => false
}
memcache_servers = [''192.168.4.1:11211'']
config.cache_store = :mem_cache_store, memcache_servers,
memcache_options
config.action_controller.session_store = :mem_cache_store
CACHE = MemCache.new(memcache_options)
CACHE...