2013-03-31 16:45:58 -04:00
|
|
|
namespace :cache do
|
2015-06-23 10:52:40 -04:00
|
|
|
desc "GitLab | Clear redis cache"
|
2013-03-31 16:45:58 -04:00
|
|
|
task :clear => :environment do
|
2014-06-20 07:58:57 -04:00
|
|
|
# Hack into Rails.cache until https://github.com/redis-store/redis-store/pull/225
|
|
|
|
# is accepted (I hope) and we can update the redis-store gem.
|
|
|
|
redis_store = Rails.cache.instance_variable_get(:@data)
|
|
|
|
redis_store.keys.each_slice(1000) do |key_slice|
|
|
|
|
redis_store.del(*key_slice)
|
|
|
|
end
|
2013-03-31 16:45:58 -04:00
|
|
|
end
|
|
|
|
end
|