diff options
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 20a4d7aba1..0868e896b7 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -232,7 +232,7 @@ module ActionController #:nodoc: # up a lot of memory since each process keeps all the caches in memory. # * DRbStore: Keeps the fragments in the memory of a separate, shared DRb process. This works for all environments and only keeps one cache # around for all processes, but requires that you run and manage a separate DRb process. - # * MemCachedStore: Works like DRbStore, but uses Danga's MemCached instead. + # * MemCacheStore: Works like DRbStore, but uses Danga's MemCache instead. # # Configuration examples (MemoryStore is the default): # @@ -246,7 +246,7 @@ module ActionController #:nodoc: # ActionController::Caching::Fragments::DRbStore.new("druby://localhost:9192") # # ActionController::Base.fragment_cache_store = - # ActionController::Caching::Fragments::FileStore.new("localhost") + # ActionController::Caching::Fragments::MemCacheStore.new("localhost") module Fragments def self.append_features(base) #:nodoc: super |