aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-03-14 22:59:16 +0100
committerXavier Noria <fxn@hashref.com>2009-03-14 22:59:16 +0100
commit1bd5a64f5ad30b0b8b018c52ba3d002c338b3c57 (patch)
tree07788771fc91f8ec4ad65d3522aaf1e5cb6b640b /railties/guides
parent28167e793d35eab1747bf3d1631d06450413a5ef (diff)
downloadrails-1bd5a64f5ad30b0b8b018c52ba3d002c338b3c57.tar.gz
rails-1bd5a64f5ad30b0b8b018c52ba3d002c338b3c57.tar.bz2
rails-1bd5a64f5ad30b0b8b018c52ba3d002c338b3c57.zip
revised titles of caching guide
Diffstat (limited to 'railties/guides')
-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 691e21314c..5c55538283 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -313,7 +313,7 @@ database again the second time that finder is called.
Query caches are created at the start of an action and destroyed at the end of
that action and thus persist only for the duration of the action.
-h4. Cache stores
+h4. Cache Stores
Rails (as of 2.1) provides different stores for the cached data created by action and
fragment caches. Page caches are always stored on disk.
@@ -440,7 +440,7 @@ Rails.cache.write("city", "Duckburgh")
Rails.cache.read("city") # => "Duckburgh"
</ruby>
-h3. Conditional GET support
+h3. Conditional GET Support
Conditional GETs are a feature of the HTTP specification that provide a way for web
servers to tell browsers that the response to a GET request hasn't changed