aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJudeArasu <judearasu@gmail.com>2011-07-22 00:28:24 +0530
committerJudeArasu <judearasu@gmail.com>2011-07-22 00:28:24 +0530
commit3cafe04c8120c1bf39dc819c6b13037f696a9c79 (patch)
treeddb68abb6d5bbfa62b5927b746319997fef45023 /railties
parent238550f7c4d71b6ceadd0b57139166b2ec4e4849 (diff)
downloadrails-3cafe04c8120c1bf39dc819c6b13037f696a9c79.tar.gz
rails-3cafe04c8120c1bf39dc819c6b13037f696a9c79.tar.bz2
rails-3cafe04c8120c1bf39dc819c6b13037f696a9c79.zip
grammatical changes
Diffstat (limited to 'railties')
-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 addfec3563..45c5aebc89 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -104,7 +104,7 @@ INFO: Action caching runs in an after filter. Thus, invalid requests won't gener
h4. Fragment Caching
-Life would be perfect if we could get away with caching the entire contents of a page or action and serving it out to the world. Unfortunately, dynamic web applications usually build pages with a variety of components not all of which have the same caching characteristics. In order to address such a dynamically created page where different parts of the page need to be cached and expired differently Rails provides a mechanism called Fragment Caching.
+Life would be perfect if we could get away with caching the entire contents of a page or action and serving it out to the world. Unfortunately, dynamic web applications usually build pages with a variety of components and not all of which have the same caching characteristics. In order to address such a dynamically created page where different parts of the page need to be cached and expired differently Rails provides a mechanism called Fragment Caching.
Fragment Caching allows a fragment of view logic to be wrapped in a cache block and served out of the cache store when the next request comes in.