You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The table below highlights version compatibility of the most-recent library versions with Redis and JDK versions. Compatibility means communication features, and Redis command capabilities.
41
37
@@ -47,6 +43,7 @@ The table below highlights version compatibility of the most-recent library vers
47
43
| >= 5.0 | Version 6.0 to current | 8, 11, 17, 21 |
48
44
| >= 5.2 | Version 7.2 to current | 8, 11, 17, 21 |
49
45
| >= 6.0 | Version 7.2 to current | 8, 11, 17, 21 |
46
+
| >= 7.0 | Version 7.2 to current | 8, 11, 17, 21 |
50
47
51
48
## Getting started
52
49
@@ -56,16 +53,16 @@ To get started with Jedis, first add it as a dependency in your Java project. If
56
53
<dependency>
57
54
<groupId>redis.clients</groupId>
58
55
<artifactId>jedis</artifactId>
59
-
<version>6.0.0</version>
56
+
<version>6.2.0</version>
60
57
</dependency>
61
58
```
62
59
63
-
To use the cutting-edge Jedis, check [here](/docs/jedis-maven.md).
60
+
To use the cutting-edge Jedis, check [here](https://redis.github.io/jedis/jedis-maven/).
64
61
65
-
Next, you'll need to connect to Redis. Consider installing a redis-stack docker:
62
+
Next, you'll need to connect to Redis. Consider installing a redis server with docker:
66
63
67
64
```bash
68
-
docker run -p 6379:6379 -it redis/redis-stack:latest
65
+
docker run -p 6379:6379 -it redis:latest
69
66
```
70
67
71
68
For many applications, it's best to use a connection pool. You can instantiate a Jedis connection pool like so:
Jedis includes support for [Redis modules](https://redis.io/docs/modules/) such as
128
125
[RedisJSON](https://redis.io/json/) and [RediSearch](https://redis.io/search/).
129
126
130
-
See the [RedisJSON Jedis](docs/redisjson.md) or [RediSearch Jedis](docs/redisearch.md) for details.
127
+
See the [RedisJSON Jedis](https://redis.github.io/jedis/redisjson/) or [RediSearch Jedis](https://redis.github.io/jedis/redisearch/) for details.
131
128
132
129
## Failover
133
130
@@ -136,24 +133,24 @@ Jedis supports retry and failover for your Redis deployments. This is useful whe
136
133
1. You have more than one Redis deployment. This might include two independent Redis servers or two or more Redis databases replicated across multiple [active-active Redis Enterprise](https://redis.io/docs/latest/operate/rs/databases/active-active/) clusters.
137
134
2. You want your application to connect to one deployment at a time and to fail over to the next available deployment if the first deployment becomes unavailable.
138
135
139
-
For the complete failover configuration options and examples, see the [Jedis failover docs](docs/failover.md).
136
+
For the complete failover configuration options and examples, see the [Jedis failover docs](https://redis.github.io/jedis/failover/).
140
137
141
138
## Token-Based Authentication
142
139
143
140
Jedis supports Token-Based authentication (TBA) starting with 5.3.0 GA release. This feature is complemented by an extension library that enhances the developer experience and provides most of the components required for TBA functionality.
144
141
145
142
Notably, the extension library includes built-in support for **Microsoft EntraID**, offering a seamless integration as part of the generic solution.
146
143
147
-
For more details and examples, please refer to the [Advanced Usage](docs/advanced-usage.md) documentation.
144
+
For more details and examples, please refer to the [Advanced Usage](https://redis.github.io/jedis/advanced-usage/) documentation.
148
145
149
146
## Documentation
150
147
151
-
The [Jedis wiki](http://github.com/redis/jedis/wiki) contains several useful articles for using Jedis.
148
+
The [Jedis documentation site](https://redis.github.io/jedis/) contains several useful articles for using Jedis.
152
149
153
150
You can also check the [latest Jedis Javadocs](https://www.javadoc.io/doc/redis.clients/jedis/latest/index.html).
154
151
155
152
Some specific use-case examples can be found in [`redis.clients.jedis.examples`
156
-
package](src/test/java/redis/clients/jedis/examples/) of the test source codes.
153
+
package](https://github.com/redis/jedis/tree/master/src/test/java/redis/clients/jedis/examples/) of the test source codes.
157
154
158
155
## Troubleshooting
159
156
@@ -178,4 +175,4 @@ Jedis is licensed under the [MIT license](https://github.com/redis/jedis/blob/ma
0 commit comments