Displaying 1 result from an estimated 1 matches for "good_one".
Did you mean:
godzone
2012 Nov 29
3
Proposal: faragment cache with :if / :unless conditions
...s of performance gain (not all
computations inside the main partial would be cached) and it would probably
be more clean to have something like this (trivialized):
<%= cache(@model, unless: content_cachable?(@model)) do %>
<% if @model.render_good? %>
<%= render ''good_one'' %>
<% else %>
<%= render ''bad_one'' %>
<% end %>
... other tens of similar conditions
<% end %>
This may reveal some bad partial design I''m facing, but I''m curious to know
what you guys think about it.
-f
--...