Skip to content

Instantly share code, notes, and snippets.

@euge
Created December 28, 2011 04:16
Show Gist options
  • Save euge/1526219 to your computer and use it in GitHub Desktop.
Save euge/1526219 to your computer and use it in GitHub Desktop.
content_tag performance
<% if params[:slow].present? %>
<% 100.times do %>
<% content_tag :div do %>
Something here!!
<% end -%>
<% end -%>
<% else %>
<% 100.times do %>
<%= content_tag :div, "Something here!!" %>
<% end -%>
<% end -%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment