在哪里url=redis://redistogo:XXXYYYZZZ@cod.redistogo.com:9362/
这在我的初始化代码中被调用。
这是其他相关的配置选项:
1) 在生产中.rb
config.action_controller.perform_caching = true in my production.rb
2)在我的控制器中:
caches_action :show, :layout => false, :if => Proc.new {|c| c.request.query_string.blank?}
caches_page :get_session_info
3)在初始化程序中:
Rails.application.config.cache_store = :redis_store, "#{url}"
PS:我通过在本地机器上运行生产控制台来检查这一点。我实际上重新调用cache_store
了Rails.cache.class
. 我还从heroku run bash
shell(在实际的 Heroku dyno 上)运行控制台,结果相同。
PPS:我想我想改用 memcached