Skip to main content

SparseHandle

Struct SparseHandle 

Source
pub struct SparseHandle { /* private fields */ }

Implementations§

Source§

impl SparseHandle

Source

pub fn create(path: &str) -> Result<Self, String>

Create a new empty sparse index at the given path.

Source

pub fn open(path: &str) -> Result<Self, String>

Open an existing sparse index. Tries new mmap format first, falls back to legacy bincode.

Source

pub fn create_with_store( store: Arc<dyn BlobStore>, index_name: &str, cache_base: &Path, ) -> Result<Self, String>

Create a new empty sparse index backed by a BlobStore.

cache_base is the root directory for mmap caches. Inside it, a unique subdirectory {pid}/{index_name}_{seq} is created automatically. Source of truth is the store.

Source

pub fn open_with_store( store: Arc<dyn BlobStore>, index_name: &str, cache_base: &Path, ) -> Result<Self, String>

Open an existing sparse index from a BlobStore.

cache_base is the root directory for mmap caches. Blobs are materialized from the store into {cache_base}/{pid}/{index_name}_{seq}/, then mmap’d.

Source

pub fn insert(&self, node_id: u64, vector: &SparseVector) -> Result<(), String>

Source

pub fn remove(&self, node_id: u64) -> Result<bool, String>

Source

pub fn search(&self, query: &SparseVector, limit: usize) -> Vec<(u64, f32)>

Source

pub fn search_filtered( &self, query: &SparseVector, limit: usize, allowed_ids: &[u64], ) -> Vec<(u64, f32)>

Source

pub fn len(&self) -> usize

Source

pub fn is_empty(&self) -> bool

Source

pub fn commit_inner(&self) -> Result<(), String>

Write index to disk in the new mmap format, then re-mmap. If store-backed, also persists to BlobStore.

Trait Implementations§

Source§

impl Drop for SparseHandle

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.