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