gitlab-org--gitlab-foss/lib/tasks/cache.rake

23 lines
611 B
Ruby
Raw Normal View History

2013-03-31 20:45:58 +00:00
namespace :cache do
CLEAR_BATCH_SIZE = 1000 # There seems to be no speedup when pushing beyond 1,000
REDIS_SCAN_START_STOP = '0' # Magic value, see http://redis.io/commands/scan
desc "GitLab | Clear redis cache"
2013-03-31 20:45:58 +00:00
task :clear => :environment do
2016-03-16 17:10:03 +00:00
Gitlab::Redis.with do |redis|
cursor = REDIS_SCAN_START_STOP
loop do
cursor, keys = redis.scan(
cursor,
match: "#{Gitlab::Redis::CACHE_NAMESPACE}*",
2016-03-16 17:10:03 +00:00
count: CLEAR_BATCH_SIZE
)
redis.del(*keys) if keys.any?
break if cursor == REDIS_SCAN_START_STOP
end
end
2013-03-31 20:45:58 +00:00
end
end