Coverage for cache/cache_utility.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-08 13:26 +0000
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-08 13:26 +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)