Flush any buffered writes to the backing store. No-op if unbuffered.
()
| 113 | importBatch(batch: ImportBatchRequest): Promise<ImportBatchResponse>; |
| 114 | /** Flush any buffered writes to the backing store. No-op if unbuffered. */ |
| 115 | flush(): Promise<void>; |
| 116 | /** Import embedding vectors without re-inserting the node into typed tables. */ |
| 117 | importVectors?(vectors: { id: string; vec: number[] }[]): Promise<void>; |
| 118 | /** Import a Parquet zip archive into the store. */ |
no outgoing calls