method

cache_if

cache_if(condition, name = {}, options = {}, &block)
public

Cache fragments of a view if condition is true

<% cache_if admin?, project do %>
  <b>All the topics on this project</b>
  <%= render project.topics %>
<% end %>