4

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

4

2 回答 2

7

您可以将其添加到您的 development.rb 中,它应该像其他缓存一样进行片段缓存

config.action_controller.perform_caching = true
config.cache_classes = true
config.cache_store = :mem_cache_store
于 2009-06-23T20:14:43.170 回答
2

您可以在 environment.rb 中设置 fragment_cache_store

  ActionController::Base.cache_store = ActiveSupport::Cache::MemCacheStore.new()

http://api.rubyonrails.org/classes/ActionController/Caching.html#M000628

于 2008-11-03T16:48:02.590 回答