(self)
| 319 | return EvictionPolicyType.time_based |
| 320 | |
| 321 | def evict_next(self) -> CacheKey: |
| 322 | self._assert_cache() |
| 323 | popped_entry = self._cache.collection.popitem(last=False) |
| 324 | return popped_entry[0] |
| 325 | |
| 326 | def evict_many(self, count: int) -> List[CacheKey]: |
| 327 | self._assert_cache() |