Deserialize the index from disk
(cls, file: Union[str, PurePath])
| 91 | |
| 92 | @classmethod |
| 93 | def load(cls, file: Union[str, PurePath]) -> "BaseIndex": |
| 94 | """Deserialize the index from disk""" |
| 95 | raise NotImplementedError |
| 96 | |
| 97 | |
| 98 | class ElasticSearchIndex(BaseIndex): |
no outgoing calls