条件执行
了解如何作NRedisStack
使用条件执行
大多数 Redis 客户端库使用WATCH
命令作为防止
两个客户端一次写入同一个密钥(有关更多信息,请参阅 事务 )。不幸的是,这种方法是
难以在NRedisStack
.其多路复用系统
高效方便,但也可能导致不良交互
当不同的连接同时使用 watched transactions 时。
相反NRedisStack
更依赖于条件执行。这
有两种基本形式,When
Conditions 和 Transaction Conditions 中,两者都是
在下面的部分中进行了说明。
When
条件
一些命令具有变体,仅当它们更改键时才会执行
已经存在(或者,如果它不存在)。为
示例中,SET
command 具有
变种SETEX
(在键存在时设置)、
和SETNX
(在键不存在时设置)。
而不是提供这些命令的不同变体,NRedisStack
允许您添加When
condition 添加到 basic 命令中以访问其变体。
以下示例演示了HashSet()
命令。
bool resp7 = db.HashSet("Details", "SerialNumber", "12345");
Console.WriteLine(resp7); // >>> true
db.HashSet("Details", "SerialNumber", "12345A", When.NotExists);
string resp8 = db.HashGet("Details", "SerialNumber");
Console.WriteLine(resp8); // >>> 12345
db.HashSet("Details", "SerialNumber", "12345A");
string resp9 = db.HashGet("Details", "SerialNumber");
Console.WriteLine(resp9); // >>> 12345A
The available conditions are
When.Exists
, When.NotExists
, and the default
When.Always
.
Transaction conditions
NRedisStack
also supports a more extensive set of conditions that you
can add to transactions. They are implemented internally using
WATCH
commands in a way that is
guaranteed to be safe, without interactions between different clients.
Although conditions don't provide exactly the same behavior as
explicit WATCH
commands, they are convenient to use and execute
efficiently.
The example below shows how to use the AddCondition()
method on
a transaction to let it run only if a specified hash key does not
already exist. See
Pipelines and transactions
for more information about transactions.
var watchedTrans = new Transaction(db);
watchedTrans.AddCondition(Condition.KeyNotExists("customer:39182"));
watchedTrans.Db.HashSetAsync(
"customer:39182",
new HashEntry[]{
new HashEntry("name", "David"),
new HashEntry("age", "27")
}
);
bool succeeded = watchedTrans.Execute();
Console.WriteLine(succeeded); // >>> true
The table below describes the full set of conditions you can add to
a transaction. Note that you can add more than one condition to the
same transaction if necessary.
Condition
Description
HashEqual
Enforces that the given hash-field must have the specified value.
HashExists
Enforces that the given hash-field must exist.
HashNotEqual
Enforces that the given hash-field must not have the specified value.
HashNotExists
Enforces that the given hash-field must not exist.
KeyExists
Enforces that the given key must exist.
KeyNotExists
Enforces that the given key must not exist.
ListIndexEqual
Enforces that the given list index must have the specified value.
ListIndexExists
Enforces that the given list index must exist.
ListIndexNotEqual
Enforces that the given list index must not have the specified value.
ListIndexNotExists
Enforces that the given list index must not exist.
StringEqual
Enforces that the given key must have the specified value.
StringNotEqual
Enforces that the given key must not have the specified value.
HashLengthEqual
Enforces that the given hash length is a certain value.
HashLengthLessThan
Enforces that the given hash length is less than a certain value.
HashLengthGreaterThan
Enforces that the given hash length is greater than a certain value.
StringLengthEqual
Enforces that the given string length is a certain value.
StringLengthLessThan
Enforces that the given string length is less than a certain value.
StringLengthGreaterThan
Enforces that the given string length is greater than a certain value.
ListLengthEqual
Enforces that the given list length is a certain value.
ListLengthLessThan
Enforces that the given list length is less than a certain value.
ListLengthGreaterThan
Enforces that the given list length is greater than a certain value.
SetLengthEqual
Enforces that the given set cardinality is a certain value.
SetLengthLessThan
Enforces that the given set cardinality is less than a certain value.
SetLengthGreaterThan
Enforces that the given set cardinality is greater than a certain value.
SetContains
Enforces that the given set contains a certain member.
SetNotContains
Enforces that the given set does not contain a certain member.
SortedSetLengthEqual
Enforces that the given sorted set cardinality is a certain value.
SortedSetLengthEqual
Enforces that the given sorted set contains a certain number of members with scores in the given range.
SortedSetLengthLessThan
Enforces that the given sorted set cardinality is less than a certain value.
SortedSetLengthLessThan
Enforces that the given sorted set contains less than a certain number of members with scores in the given range.
SortedSetLengthGreaterThan
Enforces that the given sorted set cardinality is greater than a certain value.
SortedSetLengthGreaterThan
Enforces that the given sorted set contains more than a certain number of members with scores in the given range.
SortedSetContains
Enforces that the given sorted set contains a certain member.
SortedSetNotContains
Enforces that the given sorted set does not contain a certain member.
SortedSetEqual
Enforces that the given sorted set member must have the specified score.
SortedSetNotEqual
Enforces that the given sorted set member must not have the specified score.
SortedSetScoreExists
Enforces that the given sorted set must have the given score.
SortedSetScoreNotExists
Enforces that the given sorted set must not have the given score.
SortedSetScoreExists
Enforces that the given sorted set must have the specified count of the given score.
SortedSetScoreNotExists
Enforces that the given sorted set must not have the specified count of the given score.
StreamLengthEqual
Enforces that the given stream length is a certain value.
StreamLengthLessThan
Enforces that the given stream length is less than a certain value.
StreamLengthGreaterThan
Enforces that the given stream length is greater than a certain value.
On this page