Coverage for redis_cache/cache_utility.py: 100%
3 statements
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-18 22:11 +0000
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-18 22:11 +0000
1from canonicalwebteam.stores_web_redis.utility import RedisCache
2from webapp.config import APP_NAME
4redis_cache = RedisCache(
5 namespace=APP_NAME,
6 maxsize=1000,
7 ttl=300,
8)