pub struct SemanticDhtConfig {
pub lsh_hash_functions: usize,
pub lsh_hash_tables: usize,
pub lsh_bucket_width: f32,
pub max_query_peers: usize,
pub query_timeout: Duration,
pub enable_caching: bool,
pub cache_ttl: Duration,
pub max_cache_size: usize,
pub top_k: usize,
}Expand description
Configuration for semantic DHT operations
Fields§
§lsh_hash_functions: usizeNumber of hash functions for LSH
lsh_hash_tables: usizeNumber of hash tables for LSH
lsh_bucket_width: f32Bucket width for LSH (affects quantization)
max_query_peers: usizeMaximum number of peers to query for ANN search
query_timeout: DurationTimeout for semantic queries
enable_caching: boolWhether to cache query results
cache_ttl: DurationCache TTL for query results
max_cache_size: usizeMaximum cache size
top_k: usizeNumber of results to return for ANN queries
Trait Implementations§
Source§impl Clone for SemanticDhtConfig
impl Clone for SemanticDhtConfig
Source§fn clone(&self) -> SemanticDhtConfig
fn clone(&self) -> SemanticDhtConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SemanticDhtConfig
impl Debug for SemanticDhtConfig
Auto Trait Implementations§
impl Freeze for SemanticDhtConfig
impl RefUnwindSafe for SemanticDhtConfig
impl Send for SemanticDhtConfig
impl Sync for SemanticDhtConfig
impl Unpin for SemanticDhtConfig
impl UnwindSafe for SemanticDhtConfig
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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