Displaying 1 result from an estimated 1 matches for "do_something_intensive".
2006 Aug 25
1
Time based fragment caching plugin
...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
@stuff = do_something_intensive
end
This will check the fragment cache, see if it''s expired and if so it
will execute the code in the block. It deals with expiring the fragment
itself, so if using this you don''t need to have the expiry time in your
views and you can keep yourself DRY by having the expiry tim...