gitlab-org--gitlab-foss/lib/gitlab/redis/shared_state.rb

19 lines
459 B
Ruby

# frozen_string_literal: true
module Gitlab
module Redis
class SharedState < ::Gitlab::Redis::Wrapper
SESSION_NAMESPACE = 'session:gitlab'
USER_SESSIONS_NAMESPACE = 'session:user:gitlab'
USER_SESSIONS_LOOKUP_NAMESPACE = 'session:lookup:user:gitlab'
IP_SESSIONS_LOOKUP_NAMESPACE = 'session:lookup:ip:gitlab2'
class << self
def default_url
'redis://localhost:6382'
end
end
end
end
end