- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我想使用 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.ScriptLoad
和 IDatabase.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/
我想使用 StackExchange.Redis 为我的应用程序实现 ZPOP。根据Redis documentation在WATCH部分,ZPOP可以通过以下命令实现: WATCH zset ele
我是一名优秀的程序员,十分优秀!