42 lines
1 KiB
Ruby
42 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module RedisHelpers
|
|
# config/README.md
|
|
|
|
# Usage: performance enhancement
|
|
def redis_cache_cleanup!
|
|
Gitlab::Redis::Cache.with(&:flushdb)
|
|
end
|
|
|
|
# Usage: SideKiq, Mailroom, CI Runner, Workhorse, push services
|
|
def redis_queues_cleanup!
|
|
Gitlab::Redis::Queues.with(&:flushdb)
|
|
end
|
|
|
|
# Usage: session state, rate limiting
|
|
def redis_shared_state_cleanup!
|
|
Gitlab::Redis::SharedState.with(&:flushdb)
|
|
end
|
|
|
|
# Usage: CI trace chunks
|
|
def redis_trace_chunks_cleanup!
|
|
Gitlab::Redis::TraceChunks.with(&:flushdb)
|
|
end
|
|
|
|
# Usage: rate limiting state (for Rack::Attack)
|
|
def redis_rate_limiting_cleanup!
|
|
Gitlab::Redis::RateLimiting.with(&:flushdb)
|
|
end
|
|
|
|
# Usage: session state
|
|
def redis_sessions_cleanup!
|
|
Gitlab::Redis::Sessions.with(&:flushdb)
|
|
end
|
|
|
|
# Usage: reset cached instance config
|
|
def redis_clear_raw_config!(instance_class)
|
|
instance_class.remove_instance_variable(:@_raw_config)
|
|
rescue NameError
|
|
# raised if @_raw_config was not set; ignore
|
|
end
|
|
end
|