File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,25 @@ print(result)
168168# prints [True, 2, '2']
169169```
170170
171+ # Telemetry
172+
173+ This library sends anonymous telemetry data to help us improve your experience.
174+ We collect the following:
175+
176+ - SDK version
177+ - Platform (Vercel, AWS)
178+ - Python Runtime version
179+
180+ You can opt out by passing ` allow_telemetry=False ` when initializing the Redis client:
181+
182+ ``` py
183+ redis = Redis(
184+ # ...,
185+ allow_telemetry = False ,
186+ )
187+ ```
188+
189+
171190# Encoding
172191Although Redis can store invalid JSON data, there might be problems with the deserialization.
173192To avoid this, the Upstash REST proxy is capable of encoding the data as base64 on the server and then sending it to the client to be
You can’t perform that action at this time.
0 commit comments