Created
January 27, 2013 21:39
-
-
Save mb-dev/4650736 to your computer and use it in GitHub Desktop.
Russian Doll Caching - View - After
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <% cache @post do %> | |
| <div class="post"> | |
| <%= render partial: 'post', locals: {post: @post} %> | |
| <hr/> | |
| <div class="comments"> | |
| <% @presenter.comments.each do |comment| %> | |
| <% cache comment do %> | |
| <div id="comment-<%=comment.id%>"> | |
| <%= comment.user.name %> says: | |
| <p> | |
| <%= comment.content %> | |
| </p> | |
| </div> | |
| <% end %> | |
| <% end %> | |
| </div> | |
| </div> | |
| <% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment