[][src]Struct aerospike::policy::QueryPolicy

pub struct QueryPolicy {
    pub base_policy: BasePolicy,
    pub max_concurrent_nodes: usize,
    pub record_queue_size: usize,
    pub fail_on_cluster_change: bool,
}

QueryPolicy encapsulates parameters for query operations.

Fields

base_policy: BasePolicy

Base policy instance

max_concurrent_nodes: usize

Maximum number of concurrent requests to server nodes at any point in time. If there are 16 nodes in the cluster and max_concurrent_nodes is 8, then queries will be made to 8 nodes in parallel. When a query completes, a new query will be issued until all 16 nodes have been queried. Default (0) is to issue requests to all server nodes in parallel.

record_queue_size: usize

Number of records to place in queue before blocking. Records received from multiple server nodes will be placed in a queue. A separate thread consumes these records in parallel. If the queue is full, the producer threads will block until records are consumed.

fail_on_cluster_change: bool

Terminate query if cluster is in fluctuating state.

Methods

impl QueryPolicy[src]

pub fn new() -> Self[src]

Create a new query policy instance with default parameters.

Trait Implementations

impl Clone for QueryPolicy[src]

impl Default for QueryPolicy[src]

impl Debug for QueryPolicy[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Policy for T where
    T: PolicyLike, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,