/// Describes functionality that is common to both standalone redis servers and redis clusters
/// </summary>
publicinterfaceIDatabase:IRedis,IDatabaseAsync
{
/// <summary>
/// The numeric identifier of this database
/// </summary>
...
...
@@ -23,14 +21,12 @@ public interface IDatabase : IRedis, IDatabaseAsync
[IgnoreNamePrefix]
IBatchCreateBatch(objectasyncState=null);
/// <summary>
/// Atomically transfer a key from a source Redis instance to a destination Redis instance. On success the key is deleted from the original instance by default, and is guaranteed to exist in the target instance.
/// Add the specified member to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
/// </summary>
...
...
@@ -59,7 +54,6 @@ public interface IDatabase : IRedis, IDatabaseAsync
/// Add the specified members to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
/// </summary>
...
...
@@ -95,7 +89,6 @@ public interface IDatabase : IRedis, IDatabaseAsync
/// Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
/// Start and stop are used to specify the min and max range for score values. Similar to other range methods the values are inclusive.
...
...
@@ -919,10 +909,6 @@ public interface IDatabase : IRedis, IDatabaseAsync
/// If key already exists and is a string, this command appends the value at the end of the string. If key does not exist it is created and set as an empty string,
/// so APPEND will be similar to SET in this special case.
/// Add the specified member to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
/// </summary>
...
...
@@ -31,7 +30,6 @@ public interface IDatabaseAsync : IRedisAsync
/// Add the specified members to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
/// </summary>
...
...
@@ -67,7 +65,6 @@ public interface IDatabaseAsync : IRedisAsync
/// Increments the number stored at field in the hash stored at key by increment. If key does not exist, a new key holding a hash is created. If field does not exist or holds a string that cannot be interpreted as integer, the value is set to 0 before the operation is performed.
/// </summary>
...
...
@@ -310,7 +306,6 @@ public interface IDatabaseAsync : IRedisAsync
/// Atomically transfer a key from a source Redis instance to a destination Redis instance. On success the key is deleted from the original instance by default, and is guaranteed to exist in the target instance.
/// </summary>
...
...
@@ -521,7 +516,6 @@ public interface IDatabaseAsync : IRedisAsync
/// <returns>A dynamic representation of the command's result</returns>
/// If key already exists and is a string, this command appends the value at the end of the string. If key does not exist it is created and set as an empty string,
/// so APPEND will be similar to SET in this special case.
...
...
@@ -1015,7 +1008,6 @@ public interface IDatabaseAsync : IRedisAsync
/// The SLAVEOF command can change the replication settings of a slave on the fly. If a Redis server is already acting as slave, specifying a null master will turn off the replication, turning the Redis server into a MASTER. Specifying a non-null master will make the server a slave of another server listening at the specified hostname and port.
/// </summary>
...
...
@@ -360,21 +362,25 @@ public partial interface IServer : IRedis
/// To read the slow log the SLOWLOG GET command is used, that returns every entry in the slow log. It is possible to return only the N most recent entries passing an additional argument to the command (for instance SLOWLOG GET 10).
/// Lists the currently active channels. An active channel is a Pub/Sub channel with one ore more subscribers (not including clients subscribed to patterns).
/// </summary>
...
...
@@ -421,6 +427,7 @@ public partial interface IServer : IRedis