redisson/redisson


Redisson: Valkey & Redis Java Client and Real-Time Data Platform. Sync/Async/RxJava/Reactive API. Over 50 Valkey and Redis based Java objects and services: Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Spring, Tomcat, Scheduler, JCache API, Hibernate, RPC, local cache.. https://redisson.pro

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.redisson:redisson:redisson-3.38.1'
	}
	dependencies {
		implementation("com.github.redisson:redisson:redisson-3.38.1")
	}
	<dependency>
	    <groupId>com.github.redisson</groupId>
	    <artifactId>redisson</artifactId>
	    <version>redisson-3.38.1</version>
	</dependency>

                            
    libraryDependencies += "com.github.redisson" % "redisson" % "redisson-3.38.1"
        
        

                            
    :dependencies [[com.github.redisson/redisson "redisson-3.38.1"]]
        
        

Readme


Redisson: Valkey & Redis Java Client<br>and Real-Time Data Platform

Quick start | Documentation | Changelog | Code examples | JavaDocs

Redisson is the Java Client and Real-Time Data Platform for Valkey and Redis.

Redisson greatly extends the capabilities of Valkey and Redis by providing additional services and data structures not natively available in either platform. This enhancement includes distributed Java collections, objects, and service implementations.

Features

Redisson PRO vs. Community Edition ➜

Comparing solutions

Success stories