Skip to content

Instantly share code, notes, and snippets.

@cknoxrun
Created August 14, 2017 17:41
Show Gist options
  • Select an option

  • Save cknoxrun/73271fb082b552505c8a0c2d75e615af to your computer and use it in GitHub Desktop.

Select an option

Save cknoxrun/73271fb082b552505c8a0c2d75e615af to your computer and use it in GitHub Desktop.
namespace :redis do
namespace :flush do
desc "Flushes all redis cached moldbi views"
task :moldbi do
on roles(:db) do
execute "redis-cli KEYS \"moldbi/*\" | xargs redis-cli DEL"
end
end
desc "Flushes all redis cached moldbi resources"
task :moldbi_resources do
on roles(:db) do
execute "redis-cli KEYS \"moldbi/*/resource\" | xargs redis-cli DEL"
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment