clearvoice-api / clear_cache.py
manan77709's picture
added clearing the cache script
3ca2db1
Raw
History Blame Contribute Delete
194 Bytes
import redis
import os
from dotenv import load_dotenv
load_dotenv()
r = redis.Redis.from_url(os.getenv("REDIS_URL"))
print(f"Keys in cache: {r.dbsize()}")
r.flushall()
print("Cache cleared.")