-
-
Save cknoxrun/73271fb082b552505c8a0c2d75e615af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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