Coverage for cache/cache_utility.py: 100%
3 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-17 22:07 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-17 22:07 +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)