You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Nikita Koksharov 28f94d2013 refactoring 10 months ago
.github dependabot.yml added 10 months ago
redisson refactoring 10 months ago
redisson-all [maven-release-plugin] prepare for next development iteration 11 months ago
redisson-helidon refactoring 11 months ago
redisson-hibernate Update README.md 11 months ago
redisson-micronaut refactoring 11 months ago
redisson-mybatis refactoring 11 months ago
redisson-quarkus add redisson graceful shutdown in quarkus 11 months ago
redisson-spring-boot-starter refactoring 11 months ago
redisson-spring-data Bump io.projectreactor:reactor-test from 3.5.3 to 3.6.4 10 months ago
redisson-tomcat Fixed - ConcurrentModificationException thrown on RedissonSession save method if readMode = MEMORY and updateMode = AFTER_REQUEST #5677 10 months ago
.gitignore Remove duplicate items in `.gitignore` 4 years ago
CHANGELOG.md Update CHANGELOG.md 11 months ago
DCO.txt DCO file added 5 years ago
LICENSE.txt license updated 6 years ago
README.md links updated 11 months ago
checkstyle.xml checkstyle rules added 6 years ago
header.txt license updated 1 year ago
pom.xml Merge branch 'master' of github.com:redisson/redisson 10 months ago

README.md

Redisson - Easy Redis Java client
with features of an in-memory data grid

Maven Central JavaDoc License

Quick start | Documentation | Changelog | Code examples | FAQs | Report an issue

Based on high-performance async and lock-free Java Redis client and Netty framework.
Supported JDK: 1.8 ... 21 and Android
Supported Redis: 3.0 ... 7.2

Features

Comparing solutions

Redisson vs Jedis

Redisson vs Lettuce

Redis vs Apache Ignite

Redis vs Hazelcast

Redis vs Ehcache

Success stories

Moving from Hazelcast to Redis / Datorama

Migrating from Hazelcast to Redis / Halodoc

Distributed Locking with Redis (Migration from Hazelcast) / ContaAzul

Migrating from Coherence to Redis

Quick start

Maven

<dependency>
   <groupId>org.redisson</groupId>
   <artifactId>redisson</artifactId>
   <version>3.27.2</version>
</dependency>  

Gradle

compile 'org.redisson:redisson:3.27.2'  

SBT

libraryDependencies += "org.redisson" % "redisson" % "3.27.2"

Java

// 1. Create config object
Config config = new Config();
config.useClusterServers()
       // use "rediss://" for SSL connection
      .addNodeAddress("redis://127.0.0.1:7181");

// or read config from file
config = Config.fromYAML(new File("config-file.yaml")); 
// 2. Create Redisson instance

// Sync and Async API
RedissonClient redisson = Redisson.create(config);

// Reactive API
RedissonReactiveClient redissonReactive = redisson.reactive();

// RxJava3 API
RedissonRxClient redissonRx = redisson.rxJava();
// 3. Get Redis based implementation of java.util.concurrent.ConcurrentMap
RMap<MyKey, MyValue> map = redisson.getMap("myMap");

RMapReactive<MyKey, MyValue> mapReactive = redissonReactive.getMap("myMap");

RMapRx<MyKey, MyValue> mapRx = redissonRx.getMap("myMap");
// 4. Get Redis based implementation of java.util.concurrent.locks.Lock
RLock lock = redisson.getLock("myLock");

RLockReactive lockReactive = redissonReactive.getLock("myLock");

RLockRx lockRx = redissonRx.getLock("myLock");
// 4. Get Redis based implementation of java.util.concurrent.ExecutorService
RExecutorService executor = redisson.getExecutorService("myExecutorService");

// over 50 Redis based Java objects and services ...

Upgrade to Redisson PRO with advanced features.

Downloads

Redisson 3.27.2, Redisson node 3.27.2

FAQs

Q: What is the cause of RedisTimeoutException?

Q: When do I need to shut down a Redisson instance, at the end of each request or the end of the life of a thread?

Q: In MapCache/SetCache/SpringCache/JCache, I have set an expiry time to an entry, why is it still in Redis when it should be disappeared?

Q: How can I perform Pipelining/Transaction through Redisson?

Q: Is Redisson thread safe? Can I share an instance of it between different threads?

Q: Can I use different encoder/decoders for different tasks?