cache2k 2.4.1.Final “Port Philip”
This change log lists the changes since 2.4.0.Final.
Fixes and Improvements
- Improve exception handling when async callbacks are completed after the cache is closed, GH#175
- Fix wrong links to the documentation
Using this cache2k version
The binaries are available on maven central.
For Java SE/EE and Android environments
For Maven users:
<dependency> <groupId>${project.groupId}</groupId> <artifactId>cache2k-api</artifactId> <version>2.4.1.Final</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>cache2k-core</artifactId> <version>2.4.1.Final</version> <scope>runtime</scope> </dependency>
For Gradle users:
def cache2kVersion = '2.4.1.Final' dependencies { implementation "org.cache2k:cache2k-api:${cache2kVersion}" runtimeOnly "org.cache2k:cache2k-core:${cache2kVersion}" }
Note to Android users: The included jar files contain code that might only be needed in server environments (e.g. JMX support). It is possible to strip unnecessary code. Example ProGuard rules can be found at Andriod - cache2k User Guide
Using the JCache / JSR107 provider
Maven users include the cache2k JCache provider this way:
<dependency> <groupId>org.cache2k</groupId> <artifactId>cache2k-jcache</artifactId> <version>2.4.1.Final</version> <scope>runtime</scope> </dependency>
For Gradle users:
dependencies { runtimeOnly "org.cache2k:cache2k-jcache:2.4.1.Final" }
Implementation details, tuning tips and hints on configuration can be found at: JCache - cache2k User Guide