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
60
To use the cutting-edge Jedis, check [here](/docs/jedis-maven.md).
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:
@@ -148,7 +145,7 @@ For more details and examples, please refer to the [Advanced Usage](docs/advance
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).
0 commit comments