在3.7之前的vertx中,存在redis客户端方法mgetmany:
RedisClient mgetMany(List<String> keys,
Handler<AsyncResult<JsonArray>> handler)
Get the values of all the given keys
在本地redis方法中,与此相对应的是什么?
我们如何使用新的RestAPI替换此方法?
答案 0 :(得分:1)
其等效的redis命令为MGET
。
请参阅redis doc here
您可以使用任何Redis客户端库来调用Redis。 (例如Jedis,Redision和Lettuce),它们将为您提供易于使用的API