使用redisson如何检查redis中是否存在给定键

Using redisson how to check if a given key is present in redis

我有一组键,我想检查我的 redis 数据库中是否存在这些键。我如何使用 redisson 库来做到这一点?

您可以使用isExists函数来检查redis中是否存在key。

这是参考 link:Redis-commands-mapping-with-redisson

RedissonKeys.countExists(String... name) 可以帮助您确定密钥是否存在,而无需事先知道它的类型。

我认为这就是您所需要的。