Use load instead of view on index

This commit is contained in:
laurenspriem
2025-08-26 22:46:33 +05:30
parent 65a7a16298
commit a5704eef25

View File

@@ -32,8 +32,8 @@ impl VectorDB {
if file_exists {
println!("Loading index from disk.");
// Creates a view of the index from a file without loading it into memory. https://docs.rs/usearch/latest/usearch/struct.Index.html#method.view
db.index.view(file_path).expect("Failed to load index");
// Loads the index into memory. https://docs.rs/usearch/latest/usearch/struct.Index.html#method.load
db.index.load(file_path).expect("Failed to load index");
} else {
println!("Creating new index.");
db.save_index();