3

有没有办法在 redis 中做到这一点?

SET counter 0
INCR counter
SET KEY:{counter} "Content of line 1"
INCR counter
SET KEY:{counter} "Different content of line 2"

我的示例代码应该被替换(即,在运行时由 redis-cli 转换)为:

SET counter 0
INCR counter
SET KEY:1 "Content of line 1"
INCR counter
SET KEY:2 "Different content of line 2"
etc.

我的问题不是如何自动增加计数器。
我的问题是语法:如何将通用 {wildcard} 包含到以下内容中:

SET keyname:{currentcounter} "value" ...

任何帮助表示赞赏。非常感谢 !

伯尼

4

2 回答 2

1

如果您使用的是 redis 2.6+,那么您可以使用 lua 脚本和 EVAL 命令,如下所示:

eval "local c = redis.call('incr', KEYS[1]); 
      return redis.call('set', KEYS[2] .. ':' .. c, ARGV[1])"
      2 counter KEY "Content of line 1"

我将它分成多行以使其更易于阅读。

编辑
对不起,我出差几天了。这是一个显示它有效的示例。

redis 127.0.0.1:6379> flushdb
OK
redis 127.0.0.1:6379> eval "local c = redis.call('incr', KEYS[1]); return redis.call('set', KEYS[2] .. ':' .. c, ARGV[1])" 2 counter KEY "Content of line 1"
OK
redis 127.0.0.1:6379> keys *
1) "KEY:1"
2) "counter"
redis 127.0.0.1:6379> get counter
"1"
redis 127.0.0.1:6379> get KEY:1
"Content of line 1"
redis 127.0.0.1:6379> eval "local c = redis.call('incr', KEYS[1]); return redis.call('set', KEYS[2] .. ':' .. c, ARGV[1])" 2 counter KEY "Content of the next thing"
OK
redis 127.0.0.1:6379> keys *
1) "KEY:1"
2) "KEY:2"
3) "counter"
redis 127.0.0.1:6379> get counter
"2"
redis 127.0.0.1:6379> get KEY:2
"Content of the next thing"
于 2013-08-23T23:00:23.777 回答
0

不,SET/GET 命令不支持这一点。

你可以在 redis 中使用 LUA 脚本做类似的事情,甚至更简单;您可以使用简单的编程/脚本来按照 redis 期望的方式发出命令

于 2013-08-23T22:47:12.187 回答