Ejemplo n.º 1
0
        private async Task <byte[]> RPopCoreAsync(byte[] key)
        {
            using var connection = new RedisConnection(_connectionSettings);
            var command = new RPop(connection.GetStream(), key);

            return(await command.ExecuteAsync());
        }