We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d78c5d3 commit 9cac761Copy full SHA for 9cac761
redis/cache.py
@@ -70,7 +70,7 @@ def touch(self, cache_key: CacheKey) -> None:
70
71
class CacheInterface(ABC):
72
@abstractmethod
73
- def get_collection(self) -> OrderedDict[CacheKey, CacheEntry]:
+ def get_collection(self) -> OrderedDict:
74
pass
75
76
@@ -138,7 +138,7 @@ def __init__(
138
self._eviction_policy = self._cache_config.get_eviction_policy().value()
139
self._eviction_policy.cache = self
140
141
142
return self._cache
143
144
def get_eviction_policy(self) -> EvictionPolicyInterface:
0 commit comments