1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1853 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-07-17 10:03:47 +00:00
parent 33cf8f162e
commit e51221871c

View file

@ -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