Coverage for cache / cache_utility.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.1, created at 2025-12-29 22:06 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2025-12-29 22:06 +0000
1from canonicalwebteam.stores_web_redis.utility import RedisCache
2from webapp.config import APP_NAME
5redis_cache = RedisCache(
6 namespace=APP_NAME,
7 maxsize=1000,
8 ttl=300,
9)