Coverage for cache / cache_utility.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-05 22:09 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-05 22:09 +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)