From ac6f459d7451c0be8ce0234d47abd3cc9da06b3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cahid=20Arda=20=C3=96z?= Date: Tue, 16 Jul 2024 14:09:26 +0300 Subject: [PATCH] feat: enable auto pipelining by default (#1187) --- pkg/redis.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/redis.ts b/pkg/redis.ts index a22abec3..cb35ff44 100644 --- a/pkg/redis.ts +++ b/pkg/redis.ts @@ -207,7 +207,7 @@ export class Redis { this.client = client; this.opts = opts; this.enableTelemetry = opts?.enableTelemetry ?? true; - this.enableAutoPipelining = opts?.enableAutoPipelining ?? false; + this.enableAutoPipelining = opts?.enableAutoPipelining ?? true; } get json() {