module Redis::RedisKeys ROUND_ROBIN_AGENTS = 'ROUND_ROBIN_AGENTS:%d'.freeze CONVERSATION_MAILER_KEY = 'CONVERSATION::%d'.freeze ## Online Status Keys # hash containing user_id key and status as value ONLINE_STATUS = 'ONLINE_STATUS::%d'.freeze # sorted set storing online presense of account contacts ONLINE_PRESENCE_CONTACTS = 'ONLINE_PRESENCE::%d::CONTACTS'.freeze # sorted set storing online presense of account users ONLINE_PRESENCE_USERS = 'ONLINE_PRESENCE::%d::USERS'.freeze ## Authorization Status Keys AUTHORIZATION_ERROR_COUNT = 'AUTHORIZATION_ERROR_COUNT:%s:%d'.freeze REAUTHORIZATION_REQUIRED = 'REAUTHORIZATION_REQUIRED:%s:%d'.freeze end