gpt4 book ai didi

c# - StackExchange.Redis 支持 ZPOP?

转载 作者:IT王子 更新时间:2023-10-29 06:11:26 29 4
gpt4 key购买 nike

我想使用 StackExchange.Redis 为我的应用程序实现 ZPOP。根据Redis documentation在WATCH部分,ZPOP可以通过以下命令实现:

WATCH zset
element = ZRANGE zset 0 0
MULTI
ZREM zset element
EXEC

在 StackExchange Redis 中,这看起来像:

var connection = GetMultiplexer();
var db = connection.GetDatabase();
var trans = db.CreateTransaction();

var elements = await trans.SortedSetRangeByScoreAsync(key, 0, 0); // THIS WILL BLOCK INDEFINITELY
var element = elemenets.FirstOrDefault();
trans.SortedSetRemoveAsync(key, element);
await trans.ExecuteAsync();

我的问题是,您如何从事务中获取和使用结果?如何实现 ZPOP

最佳答案

考虑为此使用 LUA 脚本。Redis 保证 lua 脚本是事务性的,因为当一个 eval 脚本运行时,其他任何东西都不能同时运行。所以你可以使用 EVAL .

Here是如何使用 LUA 脚本执行 ZPOP 的示例:

local val = redis.call('zrange', KEYS[1], 0, 0)
if val then redis.call('zremrangebyrank', KEYS[1], 0, 0) end
return val

还有一个 ZREVPOP提供。

借助 StackExchange.Redis,您可以使用 IServer.ScriptLoadIDatabase.ScriptEvaluate 加载和执行 LUA 脚本。

https://github.com/StackExchange/StackExchange.Redis/blob/master/Docs/Transactions.md

注意这不是阻塞。在 ConnectionMultiplexer 中包含阻塞代码并不是一个好主意。

来自 Stackexchange.Redis documentation :

...the only redis features that StackExchange.Redis does not offer (and will not ever offer) are the "blocking pops" (BLPOP, BRPOP and BRPOPLPUSH) - because this would allow a single caller to stall the entire multiplexer

关于c# - StackExchange.Redis 支持 ZPOP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33787676/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com