@upstash/redis 0.0.0-ci.fe7ec0544f213f3f58bb19e23dfafafab828c00c-20241107145222 → 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 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
+ ```