BaseStores
support the following interface:
mget(key: Sequence[str]) -> List[Optional[bytes]]
: get the contents of multiple keys, returning None
if the key does not existmset(key_value_pairs: Sequence[Tuple[str, bytes]]) -> None
: set the contents of multiple keysmdelete(key: Sequence[str]) -> None
: delete multiple keysyield_keys(prefix: Optional[str] = None) -> Iterator[str]
: yield all keys in the store, optionally filtering by a prefixBaseStore
class. See the store interface documentation for more details.