Skip to content

Commit

Permalink
Fix formatting error introduced in cc585c8.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholassm committed Jan 16, 2013
1 parent 0004ca3 commit 728f9c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion guides/source/caching_with_rails.md
Expand Up @@ -127,9 +127,10 @@ You can also combine the two schemes which is called "Russian Doll Caching":
<% end %>
<% end %>
<% end %>
It's called "Russian Doll Caching" because it nests multiple fragments. The advantage is that if a single product is updated, all the other inner fragments can be reused when regenerating the outer fragment.
```

It's called "Russian Doll Caching" because it nests multiple fragments. The advantage is that if a single product is updated, all the other inner fragments can be reused when regenerating the outer fragment.

### SQL Caching

Query caching is a Rails feature that caches the result set returned by each query so that if Rails encounters the same query again for that request, it will use the cached result set as opposed to running the query against the database again.
Expand Down

0 comments on commit 728f9c2

Please sign in to comment.