(self)
| 30 | return f"<{cls}: key: {self.key}, obj: {self._obj}, docs_count: {self.docs_count()}>" |
| 31 | |
| 32 | def docs_count(self) -> int: |
| 33 | return len(self._obj.docstore._dict) |
| 34 | |
| 35 | def save(self, path: str, create_path: bool = True): |
| 36 | with self.acquire(): |