pdf_code/zzb_data_prod/redis_test.py

5 lines
164 B
Python
Raw Normal View History

2025-09-02 15:23:55 +08:00
import redis
from config import REDIS_HOST, REDIS_PORT, REDIS_PASSWORD
redis_client = redis.Redis(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWORD, db=6)