Commit changes related to a specific cache path. For sharded stores, this commits only the shard containing the path. Default implementation commits everything.
(self, name: str)
| 66 | """ |
| 67 | |
| 68 | def commit_path(self, name: str) -> None: |
| 69 | """Commit changes related to a specific cache path. |
| 70 | |
| 71 | For sharded stores, this commits only the shard containing the path. |
| 72 | Default implementation commits everything. |
| 73 | """ |
| 74 | self.commit() |
| 75 | |
| 76 | @abstractmethod |
| 77 | def list_all(self) -> Iterable[str]: ... |