pub struct NswConfig {
pub max_connections: usize,
pub ef_search: usize,
pub ef_construct: usize,
}Expand description
Configuration for the NSW approximate nearest-neighbor graph.
Fields§
§max_connections: usizeMaximum number of bidirectional connections per node during construction (default: 16). Higher values improve recall at the cost of memory and insertion time.
ef_search: usizeNumber of candidates to explore during search (default: 64). Higher values improve recall at the cost of query latency.
ef_construct: usizeNumber of candidates to explore during insertion (default: 32). Higher values improve graph quality at the cost of insertion latency.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NswConfig
impl RefUnwindSafe for NswConfig
impl Send for NswConfig
impl Sync for NswConfig
impl Unpin for NswConfig
impl UnsafeUnpin for NswConfig
impl UnwindSafe for NswConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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