You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(kv): enable auto pipelining by default (#680)
* feat(kv): enable auto pipelining by default
BREAKING CHANGE: auto pipelining is on by default now, see
https://upstash.com/docs/oss/sdks/ts/redis/pipelining/auto-pipeline. This
brings performance benefits to any code making multiple redis commands
simultaneously.
If you detect bugs because of this, please open them at
https://github.com/vercel/storage/issues.
You can disable this new behavior with:
```js
import { createClient } from '@vercel/kv';
const kv = createClient({
url: ..,
token: ..,
enableAutoPipelining: false
});
```
* changeset
* update changeset
* upgrade redis
0 commit comments