aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-12 14:03:50 -0800
committerJosé Valim <jose.valim@gmail.com>2011-12-12 14:03:50 -0800
commitffa8bfeed91a10c3566a95d159645fa20f75c429 (patch)
tree5c7bcee3abd2b895f1550baee8f668489b12ede3 /railties/guides/source
parentfa1d9a884c0d5b70c97442e3360ac98ca5fa4340 (diff)
parent04d5eae4e835ead8ef785de4eb442893426f4b29 (diff)
downloadrails-ffa8bfeed91a10c3566a95d159645fa20f75c429.tar.gz
rails-ffa8bfeed91a10c3566a95d159645fa20f75c429.tar.bz2
rails-ffa8bfeed91a10c3566a95d159645fa20f75c429.zip
Merge pull request #3954 from bdurand/null_store_2
Add ActiveSupport::Cache::NullStore for testing and development
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/caching_with_rails.textile8
1 files changed, 8 insertions, 0 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile
index 0ef6f51190..ec9bfd4d40 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -332,6 +332,14 @@ caches_action :index, :expires_in => 60.seconds, :unless_exist => true
For more information about Ehcache, see "http://ehcache.org/":http://ehcache.org/ .
For more information about Ehcache for JRuby and Rails, see "http://ehcache.org/documentation/jruby.html":http://ehcache.org/documentation/jruby.html
+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
+</ruby>
+
h4. Custom Cache Stores
You can create your own custom cache store by simply extending +ActiveSupport::Cache::Store+ and implementing the appropriate methods. In this way, you can swap in any number of caching technologies into your Rails application.