为了连接Java应用程序中的redis,我尝试使用azure来处理redis。我在这个链接中遇到了两个依赖项。azure-mgmt-redis依赖项使用的是什么?
有谁能帮我解决这个问题吗?
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-mgmt-redis</artifactId>
<version>1.3.0</version>
</dependency>
发布于 2020-11-24 00:38:49
azure-mgmt-redis
用于管理Azure redis resources.For实例,您可以使用它创建/删除Azure Redis实例、导入数据或更新Azure Redis实例。
这个SDK是基于Azure管理REST的。
Jedis
用于调用Azure服务,例如获取/设置键/值。
https://stackoverflow.com/questions/64966230
复制相似问题