2c8bf00d38
ref: #3199
10 lines
485 B
Ruby
10 lines
485 B
Ruby
redis = Rails.env.test? ? MockRedis.new : Redis.new(Redis::Config.app)
|
|
|
|
# Alfred
|
|
# Add here as you use it for more features
|
|
# Used for Round Robin, Conversation Emails & Online Presence
|
|
$alfred = ConnectionPool::Wrapper.new(size: 5, timeout: 3) { Redis::Namespace.new('alfred', redis: redis, warning: true) }
|
|
|
|
# Velma : Determined protector
|
|
# used in rack attack
|
|
$velma = ConnectionPool::Wrapper.new(size: 5, timeout: 3) { Redis::Namespace.new('velma', redis: redis, warning: true) }
|