aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorMatthieu Paret <matthieuparet69@gmail.com>2013-06-07 12:27:15 +0300
committerMatthieu Paret <mathieu@ifeelgoods.com>2013-06-19 11:06:16 +0200
commit31899da15955c54cf61f582911602a987a069505 (patch)
treefbea6e1b333c1c65a4b93adb2e72403b46ada06e /railties
parent20daaf4e2ab30762eeaf023e4870f5a10c34c534 (diff)
downloadrails-31899da15955c54cf61f582911602a987a069505.tar.gz
rails-31899da15955c54cf61f582911602a987a069505.tar.bz2
rails-31899da15955c54cf61f582911602a987a069505.zip
indicate the default Rails cache store
memory_store is the default cache store implementation if you call ActiveSupport::Cache.lookup_store without arguments.
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/caching_with_rails.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile
index 376eb74753..444215f0fa 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -301,8 +301,6 @@ config.cache_store = :memory_store, :size => 64.megabytes
If you're running multiple Ruby on Rails server processes (which is the case if you're using mongrel_cluster or Phusion Passenger), then your Rails server process instances won't be able to share cache data with each other. This cache store is not appropriate for large application deployments, but can work well for small, low traffic sites with only a couple of server processes or for development and test environments.
-This is the default cache store implementation.
-
h4. ActiveSupport::Cache::FileStore
This cache store uses the file system to store entries. The path to the directory where the store files will be stored must be specified when initializing the cache.
@@ -315,6 +313,8 @@ With this cache store, multiple server processes on the same host can share a ca
Note that the cache will grow until the disk is full unless you periodically clear out old entries.
+This is the default cache store if config.cache_store is not defined and tmp/cache is writable.
+
h4. ActiveSupport::Cache::MemCacheStore
This cache store uses Danga's +memcached+ server to provide a centralized cache for your application. Rails uses the bundled +memcache-client+ gem by default. This is currently the most popular cache store for production websites. It can be used to provide a single, shared cache cluster with very a high performance and redundancy.