有没有办法使用java程序来实现和实现这一点。
目前我指的是Redis网站。
如果您详细了解 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 作为客户端编写的示例。
我试过使用 jedis 客户端。
以下语法有助于获取哈希列表。
Scan 0 Match FolderName:* count 10000
它工作得很好。