Skip to content

Instantly share code, notes, and snippets.

@mb-dev
Created January 27, 2013 21:39
Show Gist options
  • Select an option

  • Save mb-dev/4650736 to your computer and use it in GitHub Desktop.

Select an option

Save mb-dev/4650736 to your computer and use it in GitHub Desktop.
Russian Doll Caching - View - After
<% 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