Check if the provided keys exist in the database. Args: keys: A list of keys to check. Returns: A list of boolean values indicating the existence of each key.
(self, keys: Sequence[str])
| 139 | |
| 140 | @abstractmethod |
| 141 | def exists(self, keys: Sequence[str]) -> List[bool]: |
| 142 | """Check if the provided keys exist in the database. |
| 143 | |
| 144 | Args: |
| 145 | keys: A list of keys to check. |
| 146 | |
| 147 | Returns: |
| 148 | A list of boolean values indicating the existence of each key. |
| 149 | """ |
| 150 | |
| 151 | @abstractmethod |
| 152 | async def aexists(self, keys: Sequence[str]) -> List[bool]: |
no outgoing calls