Struct async_memcached::Client

source ·
pub struct Client { /* private fields */ }
Expand description

High-level memcached client.

Client is mapped one-to-one with a given connection to a memcached server, and provides a high-level API for executing commands on that connection.

Implementations§

source§

impl Client

source

pub async fn new<S: AsRef<str>>(dsn: S) -> Result<Client, Error>

Creates a new Client based on the given data source string.

Supports UNIX domain sockets and TCP connections. For TCP: the DSN should be in the format of tcp://<IP>:<port> or <IP>:<port>. For UNIX: the DSN should be in the format of unix://<path>.

source

pub async fn get<K: AsRef<[u8]>>( &mut self, key: K, ) -> Result<Option<Value>, Error>

Gets the given key.

If the key is found, Some(Value) is returned, describing the metadata and data of the key.

Otherwise, Error is returned.

source

pub async fn get_many<I, K>(&mut self, keys: I) -> Result<Vec<Value>, Error>
where I: IntoIterator<Item = K>, K: AsRef<[u8]>,

Gets the given keys.

If any of the keys are found, a vector of Value will be returned, where Value describes the metadata and data of the key.

Otherwise, Error is returned.

source

pub async fn set<K, V>( &mut self, key: K, value: V, ttl: Option<i64>, flags: Option<u32>, ) -> Result<(), Error>
where K: AsRef<[u8]>, V: AsRef<[u8]>,

Sets the given key.

If ttl or flags are not specified, they will default to 0. If the value is set successfully, () is returned, otherwise Error is returned.

source

pub async fn add<K, V>( &mut self, key: K, value: V, ttl: Option<i64>, flags: Option<u32>, ) -> Result<(), Error>
where K: AsRef<[u8]>, V: AsRef<[u8]>,

Add a key. If the value exists, Err(Protocol(NotStored)) is returned.

source

pub async fn delete_no_reply<K>(&mut self, key: K) -> Result<(), Error>
where K: AsRef<[u8]>,

Delete a key but don’t wait for a reply.

source

pub async fn delete<K>(&mut self, key: K) -> Result<(), Error>
where K: AsRef<[u8]>,

Delete a key and wait for a reply

source

pub async fn increment<K>(&mut self, key: K, amount: u64) -> Result<u64, Error>
where K: AsRef<[u8]>,

Increments the given key by the specified amount. Can overflow from the max value of u64 (18446744073709551615) -> 0. Returns the new value of the key if key exists, otherwise returns KeyNotFound error.

source

pub async fn increment_no_reply<K>( &mut self, key: K, amount: u64, ) -> Result<(), Error>
where K: AsRef<[u8]>,

Increments the given key by the specified amount with no reply from the server. /// Can overflow from the max value of u64 (18446744073709551615) -> 0.

source

pub async fn decrement<K>(&mut self, key: K, amount: u64) -> Result<u64, Error>
where K: AsRef<[u8]>,

Decrements the given key by the specified amount. Will not decrement the counter below 0.

source

pub async fn decrement_no_reply<K>( &mut self, key: K, amount: u64, ) -> Result<(), Error>
where K: AsRef<[u8]>,

Decrements the given key by the specified amount with no reply from the server. Will not decrement the counter below 0. Returns the new value of the key if key exists, otherwise returns KeyNotFound error.

source

pub async fn version(&mut self) -> Result<String, Error>

Gets the version of the server.

If the version is retrieved successfully, String is returned containing the version component e.g. 1.6.7, otherwise Error is returned.

For some setups, such as those using Twemproxy, this will return an error as those intermediate proxies do not support the version command.

source

pub async fn dump_keys(&mut self) -> Result<MetadumpIter<'_>, Error>

Dumps all keys from the server.

This operation scans all slab classes from tail to head, in a non-blocking fashion. Thus, not all items will be found as new items could be inserted or deleted while the crawler is still running.

MetadumpIter must be iterated over to discover whether or not the crawler successfully started, as this call will only return Error if the command failed to be written to the server at all.

Available as of memcached 1.4.31.

source

pub async fn stats(&mut self) -> Result<HashMap<String, String>, Error>

Collects statistics from the server.

The statistics that may be returned are detailed in the protocol specification for memcached, but all values returned by this method are returned as strings and are not further interpreted or validated for conformity.

Auto Trait Implementations§

§

impl !Freeze for Client

§

impl RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl UnwindSafe for Client

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.