Skip to content

Commit

Permalink
Jedis 4 changes (#2693)
Browse files Browse the repository at this point in the history
- Changes for Jedis 4
  - Made the Connection class as the base of operations, instead of Jedis class
  - Introduced ConnectionProvider
  - Introduced CommandExecutor

- Added RedisJSON and RedisJSON 2 support

- Added RediSearch support

- Introduced JedisPooled, an easier to use JedisPool

- Introduced JedisSharding, replacing ShardedJedisPool and related classes

- Introduced ClusterPipeline and ShardedPipeline

- Introduced ReliableTransaction
  • Loading branch information
sazzad16 committed Dec 8, 2021
1 parent 71cd5f1 commit 858c805
Show file tree
Hide file tree
Showing 404 changed files with 45,276 additions and 33,225 deletions.
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,22 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.11.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20210307</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.8</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -144,6 +151,7 @@
<systemPropertyVariables>
<redis-hosts>${redis-hosts}</redis-hosts>
</systemPropertyVariables>
<!--<trimStackTrace>false</trimStackTrace>-->
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 858c805

Please sign in to comment.