(self, key: str, min: int, max: int)
| 43 | logger.warning("[agentops.common.cache] zremrangebyscore() is not implemented in development") |
| 44 | |
| 45 | def zcount(self, key: str, min: int, max: int) -> int: |
| 46 | logger.warning("[agentops.common.cache] zcount() is not implemented in development") |
| 47 | return 0 |
| 48 | |
| 49 | class SimpleCache(BaseDevCache): |
| 50 | """In-memory cache for local development.""" |
no outgoing calls
no test coverage detected