Return an iterable over all values matching this key.
(self, key: bytes)
| 241 | |
| 242 | @abc.abstractmethod |
| 243 | def fetch(self, key: bytes) -> Iterable[bytes]: |
| 244 | """Return an iterable over all values matching this key.""" |
| 245 | raise NotImplementedError(f"{type(self).__name__}.fetch") |
| 246 | |
| 247 | @abc.abstractmethod |
| 248 | def delete(self, key: bytes, value: bytes) -> None: |