Skip to content

Instantly share code, notes, and snippets.

@semanticart
Created October 3, 2010 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save semanticart/6c381274d6ad7a78b0d0 to your computer and use it in GitHub Desktop.
Save semanticart/6c381274d6ad7a78b0d0 to your computer and use it in GitHub Desktop.
def my_cached_expensive_operation
Rails.cache.fetch("some_cache_key_#{Date.today}") do
# the actual expensive operation
my_expensive_operation
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment