Skip to content

Instantly share code, notes, and snippets.

@seyhunak
Created February 19, 2014 08:50
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 seyhunak/9088298 to your computer and use it in GitHub Desktop.
Save seyhunak/9088298 to your computer and use it in GitHub Desktop.
Cache Clear - Rake - Task
### lib/tasks/cache.rake
namespace :cache do
desc "Clear redis cache"
task :clear => :environment do
Rails.cache.clear
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment