import { pipelineCommands } from "https://deno.land/x/r2d2@v0.0.10/mod.ts";
Pipelines commands to the Redis server and returns the parsed replies.
Example:
const redisConn = await Deno.connect({ port: 6379 });
// Returns [1, 2, 3, 4]
await pipelineCommands(redisConn, [
["INCR", "X"],
["INCR", "X"],
["INCR", "X"],
["INCR", "X"],
]);