diff options
-rw-r--r-- | guides/source/caching_with_rails.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md index 07dce1af56..9a56233e4a 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -133,6 +133,7 @@ If `products/_product.html.erb` starts with a `cache` call like so: <% cache product do %> <%= product.name %> <% end %> +``` All the cached templates from previous renders will be fetched at once with much greater speed. There's more info on how to make your templates [eligible for |