@upstash/redis 0.0.0-ci.ff7a0b135b28ff50a7e2634a78123684be3ed71f-20241105152627 → 0.0.0-ci.ff91bb10adb82f9d009471b11db70c40b6dbf5f8-20251205205412
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/{chunk-O2BCOVQA.mjs → chunk-WTYE7OV3.mjs} +779 -68
- package/cloudflare.d.mts +3 -3
- package/cloudflare.d.ts +3 -3
- package/cloudflare.js +780 -79
- package/cloudflare.mjs +2 -2
- package/fastly.d.mts +2 -2
- package/fastly.d.ts +2 -2
- package/fastly.js +779 -78
- package/fastly.mjs +1 -1
- package/nodejs.d.mts +14 -6
- package/nodejs.d.ts +14 -6
- package/nodejs.js +787 -82
- package/nodejs.mjs +9 -5
- package/package.json +1 -1
- package/{zmscore-Dc6Llqgr.d.mts → zmscore-DhpQcqpW.d.mts} +599 -46
- package/{zmscore-Dc6Llqgr.d.ts → zmscore-DhpQcqpW.d.ts} +599 -46
package/README.md
CHANGED
|
@@ -134,3 +134,12 @@ to any truthy value.
|
|
|
134
134
|
```sh
|
|
135
135
|
UPSTASH_DISABLE_TELEMETRY=1
|
|
136
136
|
```
|
|
137
|
+
|
|
138
|
+
Alternatively, you can pass `enableTelemetry: false` when initializing the Redis client:
|
|
139
|
+
|
|
140
|
+
```ts
|
|
141
|
+
const redis = new Redis({
|
|
142
|
+
// ...,
|
|
143
|
+
enableTelemetry: false,
|
|
144
|
+
});
|
|
145
|
+
```
|