@upstash/redis 0.0.0-ci.cb27f2dedaa904232a2ff3a631b20ff886188ff3-20240708092746 → 0.0.0-ci.cbfeff9b449dd01c99384632d59c371c0bee875a-20260123181940
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 +10 -2
- package/chunk-SGAAV5RA.mjs +4699 -0
- package/cloudflare.d.mts +8 -4
- package/cloudflare.d.ts +8 -4
- package/cloudflare.js +4805 -1
- package/cloudflare.mjs +97 -1
- package/fastly.d.mts +7 -3
- package/fastly.d.ts +7 -3
- package/fastly.js +4774 -1
- package/fastly.mjs +66 -1
- package/nodejs.d.mts +16 -22
- package/nodejs.d.ts +16 -22
- package/nodejs.js +4827 -1
- package/nodejs.mjs +119 -1
- package/package.json +1 -1
- package/{zmscore-c8e05e79.d.ts → zmscore-0SAuWM0q.d.mts} +917 -247
- package/zmscore-0SAuWM0q.d.ts +4190 -0
- package/chunk-ICY7VPJS.mjs +0 -1
- package/chunk-INLNQPTV.js +0 -1
package/README.md
CHANGED
|
@@ -95,7 +95,7 @@ for common problems. If you can't find a solution, please
|
|
|
95
95
|
|
|
96
96
|
## Docs
|
|
97
97
|
|
|
98
|
-
See [the documentation](https://
|
|
98
|
+
See [the documentation](https://upstash.com/docs/redis/sdks/ts/overview) for
|
|
99
99
|
details.
|
|
100
100
|
|
|
101
101
|
## Contributing
|
|
@@ -119,7 +119,6 @@ bun run test
|
|
|
119
119
|
bun run build
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
-
|
|
123
122
|
### Telemetry
|
|
124
123
|
|
|
125
124
|
This library sends anonymous telemetry data to help us improve your experience.
|
|
@@ -135,3 +134,12 @@ to any truthy value.
|
|
|
135
134
|
```sh
|
|
136
135
|
UPSTASH_DISABLE_TELEMETRY=1
|
|
137
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
|
+
```
|