Ejemplo n.º 1
0
        public async Task RemoveAsync(string key, CancellationToken token = default)
        {
            if (key == null)
            {
                throw new ArgumentNullException(nameof(key));
            }

            await _redisClient.RemoveAsync(key.Split('|'));

            // TODO: Error handling
        }