redis获取列表项并附加前缀

ljsrvy3e  于 2021-06-09  发布在  Redis
关注(0)|答案(1)|浏览(332)

我在redis里有一个字符串列表-

LPUSH keys 1 2 3 4

阅读也很容易-

LRANGE keys 0 3

1) "4"
2) "3"
3) "2"
4) "1"

如何从每个值前面都有指定字符串的列表中读取?在上面的场景中,我希望我的输出-

1) "Key:4"
2) "Key:3"
3) "Key:2"
4) "Key:1"
snz8szmq

snz8szmq1#

你需要使用lua-https://redis.io/commands/eval
您可以搜索lua文档并根据需要修改下面的代码。
举个例子:

127.0.0.1:6379> LPUSH keys 1 2 3 4
(integer) 4
127.0.0.1:6379> LRANGE keys 0 3
1) "4"
2) "3"
3) "2"
4) "1"
127.0.0.1:6379> EVAL 'local res = {} local ttt=redis.call("LRANGE", "keys", "0", "10") for k, v in pairs(ttt) do table.insert(res, "Key:" .. v) end return res' 0
1) "Key:4"
2) "Key:3"
3) "Key:2"
4) "Key:1"

相关问题