Slide 52
Slide 52 text
local res =
redis.call('ZRANGEBYSCORE','__thalassa.registrations', 0, 1,
'LIMIT', 0, 100 )
if #res > 0 then
redis.call( 'ZREMRANGEBYRANK', KEYS[1], 0, #res-1 )
return res
else
return false
end
function onOnline (reg) {
pub.send(reg.id, 'online', reg.stringify());
}
function onOffline(regId) {
pub.send(regId, 'offline');
}
The Reaper
Friday, September 13, 13