aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/caching_with_rails.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-02-28 19:07:44 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-02-28 19:07:44 +0530
commitf597122b076568356c070ed9bcd83aec29a963eb (patch)
tree25f950f04a18167329d4f1de0fdd44eea7bd9cd4 /railties/guides/source/caching_with_rails.textile
parent699ba8ab52973bf0499643235f162734fb644ab7 (diff)
parent547e695551e223e4d92762d3c176187e6780e524 (diff)
downloadrails-f597122b076568356c070ed9bcd83aec29a963eb.tar.gz
rails-f597122b076568356c070ed9bcd83aec29a963eb.tar.bz2
rails-f597122b076568356c070ed9bcd83aec29a963eb.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/caching_with_rails.textile')
-rw-r--r--railties/guides/source/caching_with_rails.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile
index 6419d32c13..e2c6c7a2a4 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -359,7 +359,7 @@ h4. ActiveSupport::Cache::NullStore
This cache store implementation is meant to be used only in development or test environments and it never stores anything. This can be very useful in development when you have code that interacts directly with +Rails.cache+, but caching may interfere with being able to see the results of code changes. With this cache store, all +fetch+ and +read+ operations will result in a miss.
<ruby>
-ActionController::Base.cache_store = :null
+ActionController::Base.cache_store = :null_store
</ruby>
h4. Custom Cache Stores