可以在redis中使用lua将存储在集合中的所有密钥作为哈希列表返回?

时间:2013-05-09 15:22:31

标签: performance lua redis

我有一个结构

data_type:key1 - hash
data_type:key2 - hash
data_type:key3 - hash
data_type:key4 - hash
data_type:key5 - hash
data_type:index - set(key1, key2, key3, key4, key5)

是否可以在redis中使用lua构建一个脚本,该脚本将迭代set data_type:index并将所有data_type:key *作为哈希列表返回?我仍在学习Lua,因为我在脑子里这么做,我觉得它会像

一样
collect = []
for key_name in redis.call.smemembers('data_type:index'):
    collect.append( redis.call.smembers('data_type:' + key_name)
return collect

通常,大多数索引都有大约100个密钥,每个密钥大约是1KB,因此在理想情况下,此脚本的响应大小为100-120KB。

在有人要求之前,真正的密钥看起来像'some_data:status:{64 bit hex string}'和'some_data:index:2013:05:09',其中{64位十六进制字符串}是其成员:索引集。

1 个答案:

答案 0 :(得分:2)

检查SSCAN command

以下内容适用于您的情况:

local collect = {}
local match_pattern = "*"
local results = redis.call("SSCAN", "data_type:index", 0, "match", match_pattern)
for i, key_name in ipairs(results[2]) do 
  -- your code here (could be different depending on your needs)
  local key_value = redis.call("GET", "data_type:" .. key_name)
  if key_value then
    table.insert(collect, key_value)
  end 
end 
return collect