[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/microsoft/python-sample-vscode-fastapi-tutorial/main/flushdb.py [Back]  [Original]

"""
This module is used to interact with a Redis database.

WARNING: This script will flush the entire Redis database. Use with caution.
"""
import redis

redis_client = redis.StrictRedis(host="0.0.0.0", port=6379, db=0, decode_responses=True)
redis_client.flushdb()

Web Proxy Viewer  |  New URL  |  Original Page