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 に答える