MVN

org.redis : scala-redis_2.11

Maven & Gradle

Apr 04, 2016
5 stars

Scala Redis · # Redis Scala client ## Key features of the library - Native Scala types Set and List responses. - Transparent serialization - Connection pooling - Consistent Hashing on the client. - Support for basic Redis sharding. http://redis.io/topics/partitioning - Support for Redis Sentinel

<dependency>
    <groupId>org.redis</groupId>
    <artifactId>scala-redis_2.11</artifactId>
    <version>0.0.25</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.redis : scala-redis_2.11 to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.25

All Versions

Choose a version of org.redis : scala-redis_2.11 to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
scala-redis_2.11-0.0.25
scala-redis_2.11-0.0.24
scala-redis_2.11-0.0.23
scala-redis_2.11-0.0.22
scala-redis_2.11-0.0.21
scala-redis_2.11-0.0.19
scala-redis_2.11-0.0.18
scala-redis_2.11-0.0.13

How to add a dependency to Maven

Add the following org.redis : scala-redis_2.11 maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.redis</groupId>
    <artifactId>scala-redis_2.11</artifactId>
    <version>0.0.25</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.redis : scala-redis_2.11 gradle dependency to your build.gradle file:

implementation 'org.redis:scala-redis_2.11:0.0.25'

Gradle Kotlin DSL: Add the following org.redis : scala-redis_2.11 gradle kotlin dependency to your build.gradle.kts file:

implementation("org.redis:scala-redis_2.11:0.0.25")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.redis : scala-redis_2.11 sbt scala dependency to your build.sbt file:

libraryDependencies += "org.redis" % "scala-redis_2.11" % "0.0.25"