Struct fred::sync::borrowed::RedisClientRemote
[−]
[src]
pub struct RedisClientRemote { /* fields omitted */ }
A Send
and Sync
wrapper around a redis client that borrows self
on each command, instead
of taking ownership over self
. This pattern gives the caller more freedom to manage ownership
over the value, such as when the client is wrapped with another struct.
However, this pattern is more tedious to use when commands are chained together in a single
chain of futures as it requires the caller to either explicitly clone or move the client into
those callbacks. For that reason it is not the default interface. However, if you intend on
wrapping the client in another struct, or an Arc
, or something that manages ownership
and mutability for the inner value, then this interface is probably what you want. You
will still have to manually move or clone the wrapper struct into callbacks as needed,
but with this interface the ownership requirements are removed on all commands.
For example, one use case for this interface would be as follows:
- Create several
RedisClient
instances on an event loop. - Create
RedisClientRemote
wrappers for them. - Move each of the
RedisClientRemote
instances into another wrapper structFoo
. - Wrap
Foo
in anArc
, and send clones of theArc<Foo>
to different threads.
If the commands on the RedisClientRemote
instances required taking ownership over self
then this pattern would be much more difficult to implement, since an Arc
only allows for
using functions that borrow the inner value. This interface is primarily designed to support
this kind of usage.
See examples/sync_borrowed.rs
for usage examples.
Methods
impl RedisClientRemote
[src]
fn new() -> RedisClientRemote
Create a new, empty RedisClientRemote
.
fn to_owned(&self) -> RedisClientRemote
Convert a clone of this borrowed::RedisClientRemote
to an owned::RedisClientRemote
.
fn into_owned(self) -> RedisClientRemote
Convert this borrowed::RedisClientRemote
to an owned::RedisClientRemote
.
fn init(
&self,
client: RedisClient
) -> Box<Future<Item = RedisClient, Error = RedisError>>
&self,
client: RedisClient
) -> Box<Future<Item = RedisClient, Error = RedisError>>
Initialize the remote interface with an existing RedisClient
. This must be called on the same
thread that initialized the RedisClient
.
The future returned by this function runs the message passing logic between this remote instance
and the RedisClient
argument on the event loop thread.
fn on_connect(&self) -> Box<Future<Item = (), Error = RedisError>>
Returns a future that resolves when the underlying client connects to the server. This function can act as a convenient way of notifying a separate thread when the client has connected to the server and can begin processing commands.
This can be called before init
if needed, however the callback will not be registered
on the underlying client until init
is called. For this reason it's best to call init
with a client that has not yet starting running its connection future.
See the examples/sync_borrowed.rs
file for usage examples.
fn subscribe<K: Into<String>>(
&self,
channel: K
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
channel: K
) -> Box<Future<Item = usize, Error = RedisError>>
Subscribe to a channel on the PubSub interface. Any messages received before on_message
is called will be discarded, so it's
usually best to call on_message
before calling subscribe
for the first time. The usize
returned here is the number of
channels to which the client is currently subscribed.
fn unsubscribe<K: Into<String>>(
&self,
channel: K
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
channel: K
) -> Box<Future<Item = usize, Error = RedisError>>
Unsubscribe from a channel on the PubSub interface.
fn publish<K: Into<String>, V: Into<RedisValue>>(
&self,
channel: K,
message: V
) -> Box<Future<Item = i64, Error = RedisError>>
&self,
channel: K,
message: V
) -> Box<Future<Item = i64, Error = RedisError>>
Publish a message on the PubSub interface, returning the number of clients that received the message.
fn get<K: Into<RedisKey>>(
&self,
key: K
) -> Box<Future<Item = Option<RedisValue>, Error = RedisError>>
&self,
key: K
) -> Box<Future<Item = Option<RedisValue>, Error = RedisError>>
Read a value from Redis at key
.
fn set<K: Into<RedisKey>, V: Into<RedisValue>>(
&self,
key: K,
value: V,
expire: Option<Expiration>,
options: Option<SetOptions>
) -> Box<Future<Item = bool, Error = RedisError>>
&self,
key: K,
value: V,
expire: Option<Expiration>,
options: Option<SetOptions>
) -> Box<Future<Item = bool, Error = RedisError>>
Set a value at key
with optional NX|XX and EX|PX arguments.
The bool
returned by this function describes whether or not the key was set due to any NX|XX options.
fn del<K: Into<MultipleKeys>>(
&self,
keys: K
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
keys: K
) -> Box<Future<Item = usize, Error = RedisError>>
Removes the specified keys. A key is ignored if it does not exist. Returns the number of keys removed.
fn decr<K: Into<RedisKey>>(
&self,
key: K
) -> Box<Future<Item = i64, Error = RedisError>>
&self,
key: K
) -> Box<Future<Item = i64, Error = RedisError>>
Decrements the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation. Returns error if the key contains a value of the wrong type.
fn incr<K: Into<RedisKey>>(
&self,
key: K
) -> Box<Future<Item = i64, Error = RedisError>>
&self,
key: K
) -> Box<Future<Item = i64, Error = RedisError>>
Increments the number stored at key by one. If the key does not exist, it is set to 0 before performing the operation. Returns error if the value at key is of wrong type.
fn incrby<K: Into<RedisKey>>(
&self,
key: K,
incr: i64
) -> Box<Future<Item = i64, Error = RedisError>>
&self,
key: K,
incr: i64
) -> Box<Future<Item = i64, Error = RedisError>>
Increments the number stored at key by incr. If the key does not exist, it is set to 0 before performing the operation. Returns an error if the value at key is of the wrong type.
fn incrbyfloat<K: Into<RedisKey>>(
&self,
key: K,
incr: f64
) -> Box<Future<Item = f64, Error = RedisError>>
&self,
key: K,
incr: f64
) -> Box<Future<Item = f64, Error = RedisError>>
Increment the string representing a floating point number stored at key by the argument value. If the key does not exist, it is set to 0 before performing the operation. Returns error if key value is wrong type or if the current value or increment value are not parseable as float value.
fn hget<F: Into<RedisKey>, K: Into<RedisKey>>(
&self,
key: K,
field: F
) -> Box<Future<Item = Option<RedisValue>, Error = RedisError>>
&self,
key: K,
field: F
) -> Box<Future<Item = Option<RedisValue>, Error = RedisError>>
Returns the value associated with field in the hash stored at key.
fn hset<K: Into<RedisKey>, F: Into<RedisKey>, V: Into<RedisValue>>(
&self,
key: K,
field: F,
value: V
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
key: K,
field: F,
value: V
) -> Box<Future<Item = usize, Error = RedisError>>
Sets field in the hash stored at key to value. If key does not exist, a new key holding a hash is created. If field already exists in the hash, it is overwritten. Note: Return value of 1 means new field was created and set. Return of 0 means field already exists and was overwritten.
fn hdel<K: Into<RedisKey>, F: Into<MultipleKeys>>(
&self,
key: K,
fields: F
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
key: K,
fields: F
) -> Box<Future<Item = usize, Error = RedisError>>
Removes the specified fields from the hash stored at key. Specified fields that do not exist within this hash are ignored. If key does not exist, it is treated as an empty hash and this command returns 0.
fn hlen<K: Into<RedisKey>>(
&self,
key: K
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
key: K
) -> Box<Future<Item = usize, Error = RedisError>>
Returns the number of fields contained in the hash stored at key.
fn hmget<F: Into<MultipleKeys>, K: Into<RedisKey>>(
&self,
key: K,
fields: F
) -> Box<Future<Item = Vec<RedisValue>, Error = RedisError>>
&self,
key: K,
fields: F
) -> Box<Future<Item = Vec<RedisValue>, Error = RedisError>>
Returns the values associated with the specified fields in the hash stored at key. Values in a returned list may be null.
fn hmset<V: Into<RedisValue>, F: Into<RedisKey> + Hash + Eq, K: Into<RedisKey>>(
&self,
key: K,
values: HashMap<F, V>
) -> Box<Future<Item = String, Error = RedisError>>
&self,
key: K,
values: HashMap<F, V>
) -> Box<Future<Item = String, Error = RedisError>>
Sets the specified fields to their respective values in the hash stored at key. This command overwrites any specified fields already existing in the hash. If key does not exist, a new key holding a hash is created.
fn hsetnx<K: Into<RedisKey>, F: Into<RedisKey>, V: Into<RedisValue>>(
&self,
key: K,
field: F,
value: V
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
key: K,
field: F,
value: V
) -> Box<Future<Item = usize, Error = RedisError>>
Sets field in the hash stored at key to value, only if field does not yet exist. If key does not exist, a new key holding a hash is created. Note: Return value of 1 means new field was created and set. Return of 0 means no operation performed.
fn hstrlen<K: Into<RedisKey>, F: Into<RedisKey>>(
&self,
key: K,
field: F
) -> Box<Future<Item = usize, Error = RedisError>>
&self,
key: K,
field: F
) -> Box<Future<Item = usize, Error = RedisError>>
Returns the string length of the value associated with field in the hash stored at key. If the key or the field do not exist, 0 is returned.
fn hvals<K: Into<RedisKey>>(
&self,
key: K
) -> Box<Future<Item = Vec<RedisValue>, Error = RedisError>>
&self,
key: K
) -> Box<Future<Item = Vec<RedisValue>, Error = RedisError>>
Returns all values in the hash stored at key. Returns an empty vector if the list is empty.
fn hkeys<K: Into<RedisKey>>(
&self,
key: K
) -> Box<Future<Item = Vec<String>, Error = RedisError>>
&self,
key: K
) -> Box<Future<Item = Vec<String>, Error = RedisError>>
Returns all field names in the hash stored at key. Returns an empty vec if the list is empty. Null fields are converted to "nil".
Trait Implementations
impl Clone for RedisClientRemote
[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more