import * as upstashRedis from "https://deno.land/x/upstash_redis@v1.20.1/pkg/pipeline.ts";
Classes
Upstash REST API supports command pipelining to send multiple commands in batch, instead of sending each command one by one and waiting for a response. When using pipelines, several commands are sent using a single HTTP request, and a single JSON array response is returned. Each item in the response array corresponds to the command in the same order within the pipeline. |