summaryrefslogtreecommitdiff
path: root/spec/support/redis/redis_helpers.rb
blob: 0457e8487d8cd9ff687fbed72f6124fc5d5415ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module RedisHelpers
  # config/README.md

  # Usage: performance enhancement
  def redis_cache_cleanup!
    Gitlab::Redis::Cache.with(&:flushall)
  end

  # Usage: SideKiq, Mailroom, CI Runner, Workhorse, push services
  def redis_queues_cleanup!
    Gitlab::Redis::Queues.with(&:flushall)
  end

  # Usage: session state, rate limiting
  def redis_shared_state_cleanup!
    Gitlab::Redis::SharedState.with(&:flushall)
  end
end