local-llm-server/llm_server/routes/cache.py

4 lines
126 B
Python
Raw Normal View History

2023-08-21 21:28:52 -06:00
from flask_caching import Cache
2023-08-21 23:59:50 -06:00
cache = Cache(config={'CACHE_TYPE': 'redis', 'CACHE_REDIS_URL': 'redis://localhost:6379/0'})