Skip to main content

ClientBuilder

Struct ClientBuilder 

Source
pub struct ClientBuilder { /* private fields */ }
Expand description

Builder for creating a Client with per-request callbacks and metrics.

Implementations§

Source§

impl ClientBuilder

Source

pub fn zc_threshold(self, bytes: u32) -> Self

Set the zero-copy guard threshold (in bytes). Guard values passed to fire_set_with_guard smaller than this are copied into the coalescing send buffer so they batch like plain SETs instead of taking the scatter-gather guard path (which flushes every few ops). 0 = always use the guard path.

Defaults to 4096. Should generally match the runtime Config::send_zc_threshold.

Source

pub fn max_in_flight(self, n: usize) -> Self

Configure the maximum number of in-flight fire_* operations. fire_* returns Error::TooManyInFlight past it. Defaults to usize::MAX (unbounded). Set a bounded value on any server that issues fire_* faster than recv() consumes.

Source

pub fn on_result<F: Fn(&CommandResult) + 'static>(self, f: F) -> Self

Register a callback invoked after each command completes.

Source

pub fn max_batch_size(self, n: usize) -> Self

Set the maximum number of fire_* commands to coalesce into a single send. Default is 1 (each fire_* sends immediately, matching pre-coalescing behavior). Set higher for pipelined workloads to batch multiple commands into fewer TCP segments.

§Panics

Panics if n is 0.

Source

pub fn with_metrics(self) -> Self

Enable built-in histogram tracking (requires metrics feature).

Source

pub fn build(self) -> Client

Build the client.

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.