pub struct SemanticDhtConfig {Show 15 fields
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,
pub dimension: usize,
pub ef_search: usize,
pub max_routing_peers: usize,
pub vector_ttl: Duration,
pub sync_interval: Duration,
pub convergence_threshold: f32,
}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
dimension: usizeEmbedding dimension (used for put_with_vector / search_similar)
Default: 384 (matches common sentence-transformers models)
ef_search: usizeHNSW ef search parameter – higher = more accurate but slower
max_routing_peers: usizeMaximum peers to route a single query to
vector_ttl: DurationHow long vector records stay in the local annotated-record store
sync_interval: DurationHow often background gossip sync fires
convergence_threshold: f32Fraction of routing-table entries that must agree before routing is considered converged (0.0 – 1.0)
Trait Implementations§
Source§impl Clone for SemanticDhtConfig
impl Clone for SemanticDhtConfig
Source§fn clone(&self) -> SemanticDhtConfig
fn clone(&self) -> SemanticDhtConfig
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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 UnsafeUnpin for SemanticDhtConfig
impl UnwindSafe for SemanticDhtConfig
Blanket Implementations§
impl<T> Allocation for T
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
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,
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>
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>
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