summaryrefslogtreecommitdiff
path: root/lib/tasks/cache.rake
blob: 9e2fb429d577f37fc78365f9a98b3ae42ba8c103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace :cache do
  CLEAR_BATCH_SIZE = 1000 # The more the faster, but having too many can crash Ruby
  REDIS_SCAN_START_STOP = '0' # Magic value, see http://redis.io/commands/scan

  desc "GitLab | Clear redis cache"
  task :clear => :environment do
    redis_store = Rails.cache.instance_variable_get(:@data)
    cursor = REDIS_SCAN_START_STOP
    loop do
      cursor, keys = redis_store.scan(
        cursor,
        match: "#{Gitlab::REDIS_CACHE_NAMESPACE}*", 
        count: CLEAR_BATCH_SIZE
      )

      redis_store.del(*keys) if keys.any?

      break if cursor == REDIS_SCAN_START_STOP
    end
  end
end