Skip to content

Commit

Permalink
feat: enable auto pipelining by default (#1187)
Browse files Browse the repository at this point in the history
  • Loading branch information
CahidArda authored Jul 16, 2024
1 parent 4bf0be7 commit ac6f459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit ac6f459

Please sign in to comment.