saveIndex method

Future<void> saveIndex({
  1. String? collectionId,
})

Save the HNSW index marker to disk.

Implementation

Future<void> saveIndex({String? collectionId}) async {
  final service = await _serviceForCollection(collectionId);
  return service.saveIndex();
}