使用Memcached进行片段缓存

时间:2008-11-03 10:13:12

标签: ruby-on-rails ruby caching memcached fragment-caching

有没有办法在Rails中使用Memcached进行片段缓存?

2 个答案:

答案 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