method
cache_unless
rails latest stable - Class:
ActionView::Helpers::CacheHelper
cache_unless(condition, name = {}, options = {}, &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 %>