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
Jedis is a Java client for [Redis](https://github.com/redis/redis"Redis") designed for performance and ease of use.
14
14
15
15
Are you looking for a high-level library to handle object mapping? See [redis-om-spring](https://github.com/redis/redis-om-spring)!
16
16
17
-
## Contributing
17
+
## How do I Redis?
18
18
19
-
We'd love your contributions!
19
+
[Learn for free at Redis University](https://university.redis.com/)
20
20
21
-
**Bug reports** are always welcome! [You can open a bug report on GitHub](https://github.com/redis/jedis/issues/new).
21
+
[Build faster with the Redis Launchpad](https://launchpad.redis.com/)
22
22
23
-
You can also **contribute documentation** -- or anything to improve Jedis. Please see
24
-
[contribution guideline](https://github.com/redis/jedis/blob/master/.github/CONTRIBUTING.md) for more details.
23
+
[Try the Redis Cloud](https://redis.com/try-free/)
24
+
25
+
[Dive in developer tutorials](https://developer.redis.com/)
26
+
27
+
[Join the Redis community](https://redis.com/community/)
28
+
29
+
[Work at Redis](https://redis.com/company/careers/jobs/)
25
30
26
31
## Supported Redis versions
27
32
28
-
The most recent version of this library supports redis version [5.0](https://github.com/redis/redis/blob/5.0/00-RELEASENOTES), [6.0](https://github.com/redis/redis/blob/6.0/00-RELEASENOTES), [6.2](https://github.com/redis/redis/blob/6.2/00-RELEASENOTES), and [7.0](https://github.com/redis/redis/blob/7.0/00-RELEASENOTES).
33
+
The most recent version of this library supports redis version
The table below highlights version compatibility of the most-recent library versions and Redis versions. Compatibility means communication features, and Redis command capabilities.
@@ -42,7 +54,7 @@ To get started with Jedis, first add it as a dependency in your Java project. If
42
54
<dependency>
43
55
<groupId>redis.clients</groupId>
44
56
<artifactId>jedis</artifactId>
45
-
<version>4.4.3</version>
57
+
<version>5.0.0</version>
46
58
</dependency>
47
59
```
48
60
@@ -108,6 +120,13 @@ Now you can use the `JedisCluster` instance and send commands like you would wit
108
120
jedis.sadd("planets", "Mars");
109
121
```
110
122
123
+
## Using Redis modules
124
+
125
+
Jedis includes support for [Redis modules](https://redis.io/docs/modules/) such as
126
+
[RedisJSON](https://oss.redis.com/redisjson/) and [RediSearch](https://oss.redis.com/redisearch/).
127
+
128
+
See the [RedisJSON Jedis](docs/redisjson.md) or [RediSearch Jedis](docs/redisearch.md) for details.
129
+
111
130
## Failover
112
131
113
132
Jedis supports retry and failover for your Redis deployments. This is useful when:
@@ -126,25 +145,26 @@ You can also check the [latest Jedis Javadocs](https://www.javadoc.io/doc/redis.
126
145
Some specific use-case examples can be found in [`redis.clients.jedis.examples`
127
146
package](src/test/java/redis/clients/jedis/examples/) of the test source codes.
128
147
129
-
## Using Redis modules
148
+
## Troubleshooting
130
149
131
-
Jedis includes support for [Redis modules](https://redis.io/docs/modules/) such as
132
-
[RedisJSON](https://oss.redis.com/redisjson/) and [RediSearch](https://oss.redis.com/redisearch/).
150
+
If you run into trouble or have any questions, we're here to help!
133
151
134
-
See the [RedisJSON Jedis](docs/redisjson.md) or [RediSearch Jedis](docs/redisearch.md) for details.
152
+
Hit us up on the [Redis Discord Server](http://discord.gg/redis) or
153
+
[Jedis GitHub Discussions](https://github.com/redis/jedis/discussions) or
If you run into trouble or have any questions, we're here to help!
158
+
We'd love your contributions!
139
159
140
-
Hit us up on the [Redis Discord Server](http://discord.gg/redis) or [open an issue on GitHub](https://github.com/redis/jedis).
160
+
Bug reports are always welcome! [You can open a bug report on GitHub](https://github.com/redis/jedis/issues/new).
141
161
142
-
You can also find help on the [Jedis mailing list](http://groups.google.com/group/jedis_redis) or the
You can also contribute documentation -- or anything to improve Jedis. Please see
163
+
[contribution guideline](https://github.com/redis/jedis/blob/master/.github/CONTRIBUTING.md) for more details.
144
164
145
165
## License
146
166
147
-
Jedis is licensed under the [MIT license](https://github.com/redis/jedis/blob/master/LICENSE.txt).
167
+
Jedis is licensed under the [MIT license](https://github.com/redis/jedis/blob/master/LICENSE).
0 commit comments