Ejemplo n.º 1
0
        public Task <bool> GameUserExistsAsync(string gameAppId, string gameUserId)
        {
            string key = RedisKeys.Concat(gameAppId, RedisKeys.UserSet);

            return(redisProvider.SetContainsAsync(key, gameUserId));
        }