public Task <bool> GameUserExistsAsync(string gameAppId, string gameUserId) { string key = RedisKeys.Concat(gameAppId, RedisKeys.UserSet); return(redisProvider.SetContainsAsync(key, gameUserId)); }