pub struct NodeOptions {
pub value_ttl_sec: u32,
pub query_timeout_ms: u64,
pub default_value_batch_len: usize,
pub bad_peer_threshold: usize,
pub max_allowed_k: u32,
pub max_key_name_len: usize,
pub max_key_index: u32,
pub storage_gc_interval_ms: u64,
}
Expand description
DHT node configuration
Fields§
§value_ttl_sec: u32
Default stored value timeout used for Node::store_overlay_node
and
Node::store_address
Default: 3600
seconds
query_timeout_ms: u64
ADNL query timeout
Default: 1000
ms
default_value_batch_len: usize
Amount of DHT peers, used for values search
Default: 5
bad_peer_threshold: usize
Max peer penalty points. On each unsuccessful query every peer gains 2 points, and then they are reduced by one on each good action.
Default: 5
max_allowed_k: u32
Max allowed k
value for DHT FindValue
query.
Default: 5
max_key_name_len: usize
§max_key_index: u32
§storage_gc_interval_ms: u64
Storage GC interval. Will remove all outdated entries
Default: 10000
ms
Trait Implementations§
Source§impl Clone for NodeOptions
impl Clone for NodeOptions
Source§fn clone(&self) -> NodeOptions
fn clone(&self) -> NodeOptions
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 NodeOptions
impl Debug for NodeOptions
Source§impl Default for NodeOptions
impl Default for NodeOptions
Source§impl<'de> Deserialize<'de> for NodeOptionswhere
NodeOptions: Default,
impl<'de> Deserialize<'de> for NodeOptionswhere
NodeOptions: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NodeOptions
impl Serialize for NodeOptions
impl Copy for NodeOptions
Auto Trait Implementations§
impl Freeze for NodeOptions
impl RefUnwindSafe for NodeOptions
impl Send for NodeOptions
impl Sync for NodeOptions
impl Unpin for NodeOptions
impl UnwindSafe for NodeOptions
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