当我为session_store和cache_store使用一个memcached实例时会发生什么?
例如:config.cache_store = :dalli_store, 'localhost:11211'
config.session_store = :dalli_store, 'localhost:11211'
full cache_store可以从memcached中删除会话吗?
谢谢。
如果您担心缓存会影响会话(或其他),您可以使用名称空间:
config.cache_store = :dalli_store, 'localhost:11211', :namespace => 'cache'
config.session_store = :dalli_store, 'localhost:11211', :namespace => 'sessions'