MVN

com.github.doobo : union-cache

Maven & Gradle

Nov 26, 2022
2 stars

union-cache · 基于springboot的注解式缓存,方便集成多种缓存(redis、MemCache)而不改变原有代码逻辑,防止雪崩等,默认基于ConcurrentHashMap实现了本地缓存,通过继承AbstractCacheService即可替换成redis或者MemCache缓存

<dependency>
    <groupId>com.github.doobo</groupId>
    <artifactId>union-cache</artifactId>
    <version>1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.doobo : union-cache to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3

All Versions

Choose a version of com.github.doobo : union-cache to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3
union-cache-1.3
1.2.x
union-cache-1.2.2
union-cache-1.2.1
1.2
union-cache-1.2
1.1
union-cache-1.1
1.0
union-cache-1.0

How to add a dependency to Maven

Add the following com.github.doobo : union-cache maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.doobo</groupId>
    <artifactId>union-cache</artifactId>
    <version>1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.doobo : union-cache gradle dependency to your build.gradle file:

implementation 'com.github.doobo:union-cache:1.3'

Gradle Kotlin DSL: Add the following com.github.doobo : union-cache gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.doobo:union-cache:1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.doobo : union-cache sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.doobo" % "union-cache" % "1.3"