Skip to content

Commit ac6f459

Browse files
authored
feat: enable auto pipelining by default (#1187)
1 parent 4bf0be7 commit ac6f459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/redis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export class Redis {
207207
this.client = client;
208208
this.opts = opts;
209209
this.enableTelemetry = opts?.enableTelemetry ?? true;
210-
this.enableAutoPipelining = opts?.enableAutoPipelining ?? false;
210+
this.enableAutoPipelining = opts?.enableAutoPipelining ?? true;
211211
}
212212

213213
get json() {

0 commit comments

Comments
 (0)