有没有办法在Rails中使用Memcached进行片段缓存?
答案 0 :(得分:7)
您可以将它添加到您的development.rb中,它应该执行片段缓存以及其他
config.action_controller.perform_caching = true
config.cache_classes = true
config.cache_store = :mem_cache_store
答案 1 :(得分:2)
您可以在environment.rb
中设置fragment_cache_store ActionController::Base.cache_store = ActiveSupport::Cache::MemCacheStore.new()
http://api.rubyonrails.org/classes/ActionController/Caching.html#M000628