Displaying 1 result from an estimated 1 matches for "fragment_nam".
Did you mean:
fragment_name
2006 Aug 25
1
Time based fragment caching plugin
I''ve written a plugin to allow for time based fragment caching. It lets
you do things like:
<% cache ''fragment_name'', 10.minutes.from_now do %>
<p>something intensive which will be cached for 10 minutes</p>
<% end %>
Also, there''s a convenience method so that in your controllers you can do:
when_fragment_expired ''fragment_name'', 10.minutes_from_now do...