Get the value for the given key, or the default value if the key is not found.
(self, key: K, default: V | None = None)
| 374 | raise NotImplementedError() |
| 375 | |
| 376 | async def get(self, key: K, default: V | None = None) -> V | None: |
| 377 | """Get the value for the given key, or the default value if the key is not found.""" |
| 378 | raise NotImplementedError() |
| 379 | |
| 380 | async def set(self, key: K, value: V) -> None: |
| 381 | """Set the value for the given key.""" |
no outgoing calls