Created
January 26, 2015 08:53
-
-
Save alexanderscott/d2a911b0faa6fab113b3 to your computer and use it in GitHub Desktop.
Redis Lua script to return the sum of all scores in a ZSET
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- @desc: Return the sum of all scores in a sorted set | |
-- @usage: redis-cli eval "$(cat ZSUM.lua)" N <zset1> <zset2> ... <zsetN> | |
-- @return: integer sum | |
local function ZSUM(keys) | |
local sum = 0 | |
local function sumKeyScores(key) | |
local keySum = 0 | |
local membersWithScores = redis.call("ZREVRANGE", key, 0, -1, "WITHSCORES") | |
for idx,val in ipairs(membersWithScores) do | |
if idx % 2 == 0 then keySum = keySum + tonumber(val) end | |
end | |
return keySum | |
end | |
for _,key in ipairs(keys) do | |
sum = sum + sumKeyScores(key) | |
end | |
return sum | |
end | |
--[[ @TEST | |
redis.call("ZADD", "test_zset1", 5, "five", 6, "six") | |
redis.call("ZADD", "test_zset2", 7, "seven", 8, "eight") | |
local sum = ZSUM({"test_zset1", "test_zset2"}) | |
assert(sum == 26) | |
redis.call("DEL", "test_zset1", "test_zset2") | |
local sumOfZero = ZSUM({"test_empty1", "test_empty2"}) | |
assert(sumOfZero == 0) | |
--]] | |
return ZSUM(KEYS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment