1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

Redis caching improvements

This commit is contained in:
checktheroads
2020-07-13 01:54:38 -07:00
parent 69416b4dda
commit b5a67e7c0e
8 changed files with 311 additions and 152 deletions

7
hyperglass/cache/__init__.py vendored Normal file
View File

@@ -0,0 +1,7 @@
"""Redis cache handlers."""
# Project
from hyperglass.cache.aio import AsyncCache
from hyperglass.cache.sync import SyncCache
__all__ = ("AsyncCache", "SyncCache")