UPSTASH_REDIS_REST_URL
and UPSTASH_REDIS_REST_TOKEN
to your environment.
python-dotenv
to load environment variables from your .env
file.
app.py
:
http://127.0.0.1:5000/
in your browser, and you will see the counter
increment with each refresh.
Code Breakdown
Redis.from_env()
, we initialize the connection to our Redis database using the environment variables exported earlier./
) is accessed, Redis increments the counter
key. This key-value pair is automatically created in Redis if it does not exist, and its value is incremented on each request.