我使用简单的lua脚本来实现redis 4:
local result = {}
local vcounters = redis.call( "zrange", "vcounters::"..date, 0, -1, "withscores" )
local i = 1
while i < #vcounters do
local vid = vcounters[i]
if result[vid] == nil then result[vid] = 0 end
result[vid] = result[vid] +
(redis.call("scard", "vcounters::"..date.."::session::"..vid) or 0)
i = i + 2
end
return cjson.encode(result)
它是来自客户端脚本的替代zrange / scard命令,工作速度提高4-5倍。但是这个脚本是否会阻止zadd命令?
答案 0 :(得分:2)
是的,在脚本运行时,不会执行任何其他数据库命令(它们必须wait until it is done)。
从好的方面来说,如果你需要这个是原子的,那么脚本也不会与并发数据库更新交错(而从客户端发出的单个命令可能与来自其他客户端的命令混合在一起)。