-2

有没有办法使用java程序来实现和实现这一点。

目前我指的是Redis网站。

4

2 回答 2

2

如果您详细了解 Redis API,这并不难。

Set<String> hashes = new HashSet<>();
RKeys keys = redisson.getKeys();
keys.getKeys().forEach(key -> {
    if (RType.MAP.equals(keys.getType(key))) {
        hashes.add(key);
    }
});

这是一个使用 Redisson 作为客户端编写的示例。

于 2017-10-19T20:25:46.160 回答
-2

我试过使用 jedis 客户端。

以下语法有助于获取哈希列表。

Scan 0 Match FolderName:* count  10000

它工作得很好。

于 2017-10-20T01:14:04.707 回答