Redisson 客户端:检索前 N 个键

Redisson client: retrieve top N keys

如何从 redisson client 获取 N 个键的顶部?

我在 getKeysByPattern() 方法中找到了下一个签名:

Iterable<String> getKeysByPattern(String pattern, int count);

但看起来像 count - 密钥是根据请求加载到 Redis 的。

如何通过 redisson 客户端从 Redis 加载前 N 个键?

getKeysByPattern() 对这种情况无效,对吧。

这里最好使用lua脚本:

val luaScript = "return {redis.call('SCAN',ARGV[1],'MATCH',ARGV[2],'COUNT',ARGV[3])}"
var cursor = 0
do {
  val data = redissonClient
                .getScript(StringCodec.INSTANCE)
                .eval(RScript.Mode.READ_ONLY,
                        luaScript,
                        RScript.ReturnType.MAPVALUELIST,
                        listOf(),
                        cursor,
                        "some-pattern",
                        batchSize)


  val redistListData = (data[0][1] as List<String>)
  cursor = data[0][0].toInt()
} while (cursor != 0)

对于这种情况,您需要使用 RKeys.getKeysWithLimit(String pattern, int limit) 方法。