mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
9 lines
232 B
Python
9 lines
232 B
Python
import redis
|
|
from django.conf import settings
|
|
|
|
# Global Redis connection (Singleton)
|
|
redis_client = redis.Redis(
|
|
host=getattr(settings, "REDIS_HOST", "localhost"),
|
|
port=6379,
|
|
db=int(getattr(settings, "REDIS_DB", "0"))
|
|
)
|