Class: Gitlab::Redis::Sessions
- Defined in:
- lib/gitlab/redis/sessions.rb
Constant Summary collapse
- 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'
- OTP_SESSIONS_NAMESPACE =
'session:otp'
Constants inherited from Wrapper
Class Method Summary collapse
-
.config_fallback ⇒ Object
The data we store on Sessions used to be stored on SharedState.
Methods inherited from Wrapper
config_file_name, config_file_path, #db, #encrypted_secrets, #initialize, instrumentation_class, #params, pool, pool_size, rails_root, redis, redis_yml_path, #secret_file, #sentinels, #sentinels?, #store, store_name, #url, version, with
Constructor Details
This class inherits a constructor from Gitlab::Redis::Wrapper
Class Method Details
.config_fallback ⇒ Object
The data we store on Sessions used to be stored on SharedState.
13 14 15 |
# File 'lib/gitlab/redis/sessions.rb', line 13 def self.config_fallback SharedState end |