method

cache_unless

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

Cache fragments of a view unless condition is true

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