MVN

io.github.ms100 : cache-as-multi

Maven & Gradle

Jul 11, 2023
13 stars

Cache As Multi · Extend Spring Cache to implement individual caching for each item in batch data, which can improve cache hit rate and utilization. Additionally, this extension allows the methods for operating on batch data to share the cache with the methods for operating on individual data. 扩展 Spring Cache 以实现批量数据中每项的单独缓存,从而提升缓存的命中率和使用率,并且可以使操作批量数据的方法与操作单个数据的方法共用缓存。

<dependency>
    <groupId>io.github.ms100</groupId>
    <artifactId>cache-as-multi</artifactId>
    <version>1.3.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.ms100 : cache-as-multi to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3.0

All Versions

Choose a version of io.github.ms100 : cache-as-multi to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3.x
cache-as-multi-1.3.0
1.2.x
cache-as-multi-1.2.0
1.1.x
cache-as-multi-1.1.3
cache-as-multi-1.1.2
cache-as-multi-1.1.1
cache-as-multi-1.1.0
1.0.x
cache-as-multi-1.0.0

How to add a dependency to Maven

Add the following io.github.ms100 : cache-as-multi maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.ms100</groupId>
    <artifactId>cache-as-multi</artifactId>
    <version>1.3.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.ms100 : cache-as-multi gradle dependency to your build.gradle file:

implementation 'io.github.ms100:cache-as-multi:1.3.0'

Gradle Kotlin DSL: Add the following io.github.ms100 : cache-as-multi gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.ms100:cache-as-multi:1.3.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.ms100 : cache-as-multi sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.ms100" % "cache-as-multi" % "1.3.0"