2017-10-15 281 views

回答

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作爲客戶端編寫的示例。

+0

嘿謝謝你的回答。@ Redisson_RuiGu – sathya

-1

我嘗試過使用jedis客戶端。

以下語法有助於獲取散列列表。

Scan 0 Match FolderName:* count 10000 

其工作得很好。