@upstash/redis
will request responses from the server to be base64
encoded. This is to prevent issues with some edge cases when storing data where
the http response fails to be deserialized using res.json()
This solves the problem for almost all edge cases, but it can cause new issues.
responseEncoding
to false
in the
options.
2^53 -1
safely and would return
wrong results when trying to deserialize them. In these cases the default
deserializer will return them as string instead. This might cause a mismatch
with your custom types.