Flush pending data to disk. Saves whatever remaining buffered data to disk. It also releases I/O buffers, so if you are filling many datasets in the same PyTables session, please call flush() extensively so as to help PyTables to keep memory requirements low.
(self)
| 906 | |
| 907 | # Data handling |
| 908 | def flush(self) -> None: |
| 909 | """Flush pending data to disk. |
| 910 | |
| 911 | Saves whatever remaining buffered data to disk. It also releases |
| 912 | I/O buffers, so if you are filling many datasets in the same |
| 913 | PyTables session, please call flush() extensively so as to help |
| 914 | PyTables to keep memory requirements low. |
| 915 | |
| 916 | """ |
| 917 | self._g_flush() |
| 918 | |
| 919 | def chunk_info(self, coords: tuple[int, ...]) -> ChunkInfo: |
| 920 | """Get storage information about the chunk containing the `coords`. |
no outgoing calls