/// Sets the specified fields to their respective values in the hash stored at key. This command overwrites any existing fields in the hash. If key does not exist, a new key holding a hash is created.
/// Sets the specified fields to their respective values in the hash stored at key. This command overwrites any existing fields in the hash. If key does not exist, a new key holding a hash is created.
...
@@ -572,7 +579,14 @@ public interface IDatabase : IRedis, IDatabaseAsync
...
@@ -572,7 +579,14 @@ public interface IDatabase : IRedis, IDatabaseAsync
/// </summary>
/// </summary>
/// <returns>yields all elements of the set.</returns>
/// <returns>yields all elements of the set.</returns>
/// Sorts a list, set or sorted set (numerically or alphabetically, ascending by default); By default, the elements themselves are compared, but the values can also be
/// Sorts a list, set or sorted set (numerically or alphabetically, ascending by default); By default, the elements themselves are compared, but the values can also be
...
@@ -758,7 +772,14 @@ public interface IDatabase : IRedis, IDatabaseAsync
...
@@ -758,7 +772,14 @@ public interface IDatabase : IRedis, IDatabaseAsync
/// </summary>
/// </summary>
/// <returns>yields all elements of the sorted set.</returns>
/// <returns>yields all elements of the sorted set.</returns>
/// Return the time of the last DB save executed with success. A client may check if a BGSAVE command succeeded reading the LASTSAVE value, then issuing a BGSAVE command and checking at regular intervals every N seconds if LASTSAVE changed.
/// Return the time of the last DB save executed with success. A client may check if a BGSAVE command succeeded reading the LASTSAVE value, then issuing a BGSAVE command and checking at regular intervals every N seconds if LASTSAVE changed.