标签: ruby-on-rails ruby caching redis
如何将caches_store与多个config.cache_store一起使用?例如,我有用于缓存的配置文件:
config.cache_store =:redis_store
在控制器中,例如,ProductsController我想使用caches_action进行操作显示,但我想将数据保存在另一个redis服务器中,而不是在配置文件中指定的那个。怎么做?