upstash-redis is a connectionless, HTTP-based Redis client for python, designed to be used in serverless and serverful environments such as:
- AWS Lambda
- Google Cloud Functions
- and other environments where HTTP is preferred over TCP.
Inspired by other Redis clients like @upstash/redis and redis-py, the goal of this SDK is to provide a simple, dx-enchanted way to use Redis in HTTP-based environments and not only.
It is async-based
and supports typing
features.
The SDK is currently compatible with python 3.10 and above.
pip install upstash-redis
If you are using a packaging and dependency management tool like Poetry, you might want to check the respective docs in regard to adding a dependency. For example, in a Poetry-managed virtual environment, you can use
poetry add upstash-redis
To be able to use upstash-redis, you need to create a database on Upstash
and grab UPSTASH_REDIS_REST_URL
and UPSTASH_REDIS_REST_TOKEN
from the console.
from upstash_redis.client import Redis
redis = Redis(url="UPSTASH_REDIS_REST_URL", token="UPSTASH_REDIS_REST_TOKEN")
Or, if you want to automatically load the credentials from the environment:
from upstash_redis.client import Redis
redis = Redis.from_env()
upstash-redis uses aiohttp for handling the HTTP calls.
If you are interested in the low-level aspects of how requests are performed, check the aiohttp docs.
If not, all you need to know is that the Redis
class acts both as a command grouper and as an async context manager.
If you are in a serverless environment that allows it, it's also recommended to initialise the client outside the request handler to be reused while your function is still hot.
Running commands might look like this:
from upstash_redis.client import Redis
from asyncio import run
redis = Redis.from_env()
async def main():
async with redis:
await redis.set("a", "b")
print(await redis.get("a"))
run(main())
Most of the command groups, such as PUBSUB
and SCRIPT
, are available as an instance attribute of the Redis
class.
await redis.pubsub.channels()
await redis.script.flush(mode="ASYNC")
One particular case is represented by these two chained commands, which are available as functions that return an instance of
the BITFIELD
and, respectively, BITFIELD_RO
classes. Use the execute
function to run the commands.
await (
redis.bitfield("test_key")
.incrby(encoding="i8", offset=100, increment=100)
.overflow("SAT")
.incrby(encoding="i8", offset=100, increment=100)
.execute()
)
await (
redis.bitfield_ro("test_key_2")
.get(encoding="u8", offset=0)
.get(encoding="u8", offset="#1")
.execute()
)
If you want to run a command that hasn't been implemented, you can use the run
function of your client instance
and pass the command as list
await redis.run(command=["XLEN", "test_stream"])
If you want to have more control over your session management or need to use multiple custom values, use the execute function directly.
The SDK can collect the following anonymous telemetry:
- the runtime (ex:
python@v.3.10.0
) - the SDK or SDKs you're using (ex:
upstash-redisy@development, upstash-ratelimit@v.0.1.0
) - the platform you're running on (ex:
AWS-lambda
)
If you want to opt out, simply set allow_telemetry
to False
in the Redis
constructor or the from_env
class method.
Although Redis can store invalid JSON data, there might be problems with the deserialization. To 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 decoded.
For very large data, this can add a few milliseconds in latency. So, if you're sure that your data is valid JSON, you can set
rest_encoding
to False
.
upstash-redis has a fallback mechanism in case of network or API issues. By default, if a request fails it'll retry once, 3 seconds
after the error. If you want to customize that, set rest_retries
and rest_retry_interval
(in seconds).
The SDK relies on the Upstash REST proxy, which returns the RESP2
responses of the given commands.
By default, we apply formatting to some of them to provide a better developer experience.
If you want the commands to output the raw return, set format_return
to False
.
You can also opt out of individual commands:
redis.format_return = False
print(await redis.copy(source="source_string", destination="destination_string"))
redis.format_return = True
One particular formatting feature is the return_cursor
of the SCAN
-related commands.
If it is False
, only the list of results will be returned.
This project uses Poetry for packaging and dependency management.
See this for a detailed explanation on how to work with the virtual environment.
You will also need a database on Upstash.
Most of the config variables and defaults are stored in config.py.
The defaults for telemetry are set directly in the execute function.
Commands should try to have a developer-friendly signature and each deviation from the Redis API must be documented with docstrings.
To increase the DX even more, the commands should try to raise exceptions whenever parameters logics is misunderstood
and can't be deducted simply from the types. Example: bitcount
in client.py
The goal is to also isolate the complex formatting functions from the commands themselves.
For chained (ex: BITFIELD) or semantically-grouped (ex: SCRIPT {command}
) commands, a
separate class should be created.
upstash-redis aims to have a simple and reliable testing strategy, defining cases based on both the signature of the commands and their desired behaviour. Why is this important? Because testing almost any possible command form when the parameters logic doesn't change is more like testing the REST API, not only the client.
Tests should use named parameters wherever it may improve readability and should use the execute_on_http function directly instead of the SDK itself whenever an extra command is needed to ensure atomicity.
There is also the prepare_database script whose goal is to flush and then seed the selected testing database with the required keys. In this way, no random values have to be used.
To run all the tests, make sure you are in the tests folder and have the poetry virtual environment activated with all the necessary
dependencies and set the UPSTASH_REDIS_REST_URL
and UPSTASH_REDIS_REST_TOKEN
environment variables.
Prepare the database (running this will empty your destination database):
poetry run python prepare_database.py
Run the tests:
poetry run pytest
To create a new release, first use Poetry's version command.
You will then need to connect your PyPi API token to Poetry. A simple tutorial showcasing how to do it was posted by Tony Tran on DigitalOcean
From there, use poetry publish --build
.
This branch's role is to provide a python 3.10-compatible version to allow the use in platforms such as AWS Lambda.
For that to be possible, some typing features like the "Self" type and the Generic TypedDict were removed.
Currently, this is the only branch from which the SDK is released, and it holds the version used by the rate-limit SDK too.