oasysdb 0.2.0

Fast embedded vector database with incremental HNSW indexing.
Documentation
1
2
3
4
5
6
7
8
9
/// The vector database storing collections.
pub mod database;

use crate::collection::*;
use crate::func::err;
use sled::Db;
use std::error::Error;
use std::fs::remove_dir_all;
use std::path::Path;