Writer

Struct Writer 

Source
pub struct Writer<D: Distance> { /* private fields */ }
Expand description

A writer to store new items, remove existing ones, and build the search index to query the nearest neighbors to items or vectors.

Implementations§

Source§

impl<D: Distance> Writer<D>

Source

pub fn new(database: Database<D>, index: u16, dimensions: usize) -> Writer<D>

Creates a new writer from a database, index and dimensions.

Source

pub fn prepare_changing_distance<ND: Distance>( self, wtxn: &mut RwTxn<'_>, ) -> Result<Writer<ND>>

Returns a writer after having deleted the tree nodes and rewrote all the items for the new Distance format to be able to modify items safely.

Source

pub fn set_tmpdir(&mut self, path: impl Into<PathBuf>)

Sets the path to the temporary directory where files are written.

Source

pub fn is_empty(&self, rtxn: &RoTxn<'_>) -> Result<bool>

Returns true if the index is empty.

Source

pub fn need_build(&self, rtxn: &RoTxn<'_>) -> Result<bool>

Returns true if the index needs to be built before being able to read in it.

Source

pub fn item_vector( &self, rtxn: &RoTxn<'_>, item: ItemId, ) -> Result<Option<Vec<f32>>>

Returns an Optional vector previous stored in this database.

Source

pub fn contains_item(&self, rtxn: &RoTxn<'_>, item: ItemId) -> Result<bool>

Returns true if the database contains the given item.

Source

pub fn iter<'t>(&self, rtxn: &'t RoTxn<'_>) -> Result<ItemIter<'t, D>>

Returns an iterator over the items vector.

Source

pub fn add_item( &self, wtxn: &mut RwTxn<'_>, item: ItemId, vector: &[f32], ) -> Result<()>

Add an item associated to a vector in the database.

Source

pub fn del_item(&self, wtxn: &mut RwTxn<'_>, item: ItemId) -> Result<bool>

Deletes an item stored in this database and returns true if it existed.

Source

pub fn clear(&self, wtxn: &mut RwTxn<'_>) -> Result<()>

Removes everything in the database, user items and internal graph links.

Source

pub fn builder<'a, R>( &'a self, rng: &'a mut R, ) -> HannoyBuilder<'a, D, R, NoProgress>
where R: Rng + SeedableRng,

Returns an HannoyBuilder to configure the available options to build the database.

Trait Implementations§

Source§

impl<D: Debug + Distance> Debug for Writer<D>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<D> Freeze for Writer<D>

§

impl<D> RefUnwindSafe for Writer<D>
where D: RefUnwindSafe,

§

impl<D> Send for Writer<D>

§

impl<D> Sync for Writer<D>

§

impl<D> Unpin for Writer<D>
where D: Unpin,

§

impl<D> UnwindSafe for Writer<D>
where D: UnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

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

§

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more