我刚开始使用Dalli gem进行内存缓存。
我只是想知道我是否需要在每个请求中创建一个Dalli :: Client实例,如果我想从缓存中获取一些数据,或者我可以声明一个我可以重用的单例吗?
答案 0 :(得分:2)
在config/environments/production.rb
:
config.cache_store =:dalli_store
config.cache_store =:dalli_store, 'cache-1.example.com',{:namespace => NAME_OF_RAILS_APP, :expires_in => 1.day,:compress =>是的}