Rails可以为data_store和session_store使用相同的memcached实例吗?



当我为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'

相关内容

  • 没有找到相关文章

最新更新