aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorBrian Durand <brian@embellishedvisions.com>2011-12-12 13:40:29 -0600
committerBrian Durand <brian@embellishedvisions.com>2011-12-12 13:40:29 -0600
commit04d5eae4e835ead8ef785de4eb442893426f4b29 (patch)
tree3ce45567f9f9a64d88278f58e0907efbb558a5db /railties/guides
parent2fdc3ab0f10c6614f37621847ff92e8e17283df5 (diff)
downloadrails-04d5eae4e835ead8ef785de4eb442893426f4b29.tar.gz
rails-04d5eae4e835ead8ef785de4eb442893426f4b29.tar.bz2
rails-04d5eae4e835ead8ef785de4eb442893426f4b29.zip
Add ActiveSupport::Cache::NullStore to expose caching interface without actually caching for development and test environments.
Diffstat (limited to 'railties/guides')
-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.