cache2k implementation

A light weight and high performance Java caching library. Android and Java 6 compatible. Implementation jar. Do not use this as compile time dependency.

Лицензия

Лицензия

Категории

Категории

cache2k Данные Caching
Группа

Группа

org.cache2k
Идентификатор

Идентификатор

cache2k-impl
Последняя версия

Последняя версия

1.1.2.Alpha
Дата

Дата

Тип

Тип

jar
Описание

Описание

cache2k implementation
A light weight and high performance Java caching library. Android and Java 6 compatible. Implementation jar. Do not use this as compile time dependency.
Ссылка на сайт

Ссылка на сайт

https://cache2k.org/cache2k-impl
Организация-разработчик

Организация-разработчик

headissue GmbH, Munich

Скачать cache2k-impl

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.cache2k/cache2k-impl/ -->
<dependency>
    <groupId>org.cache2k</groupId>
    <artifactId>cache2k-impl</artifactId>
    <version>1.1.2.Alpha</version>
</dependency>
// https://jarcasting.com/artifacts/org.cache2k/cache2k-impl/
implementation 'org.cache2k:cache2k-impl:1.1.2.Alpha'
// https://jarcasting.com/artifacts/org.cache2k/cache2k-impl/
implementation ("org.cache2k:cache2k-impl:1.1.2.Alpha")
'org.cache2k:cache2k-impl:jar:1.1.2.Alpha'
<dependency org="org.cache2k" name="cache2k-impl" rev="1.1.2.Alpha">
  <artifact name="cache2k-impl" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.cache2k', module='cache2k-impl', version='1.1.2.Alpha')
)
libraryDependencies += "org.cache2k" % "cache2k-impl" % "1.1.2.Alpha"
[org.cache2k/cache2k-impl "1.1.2.Alpha"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.cache2k : cache2k-api jar 1.1.2.Alpha
commons-logging : commons-logging Необязательный jar 1.1.3
org.slf4j : slf4j-api Необязательный jar 1.7.21

provided (1)

Идентификатор библиотеки Тип Версия
xpp3 : xpp3 jar 1.1.4c

test (4)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-simple jar 1.7.21
org.cache2k : cache2k-testing jar 1.1.2.Alpha
org.hamcrest : hamcrest-all jar 1.3
net.jcip : jcip-annotations jar 1.0

Модули Проекта

Данный проект не имеет модулей.

License Stack Overflow Maven Central

cache2k Java Caching

cache2k is an in-memory high performance Java Caching library.

  Cache<String,String> cache = new Cache2kBuilder<String, String>() {}
    .expireAfterWrite(5, TimeUnit.MINUTES)    // expire/refresh after 5 minutes
    .resilienceDuration(30, TimeUnit.SECONDS) // cope with at most 30 seconds
                                              // outage before propagating 
                                              // exceptions
    .refreshAhead(true)                       // keep fresh when expiring
    .loader(this::expensiveOperation)         // auto populating function
    .build();

For a detailed introduction continue with Getting Started.

Features at a glance

Integrations

  • Spring Framework
  • Scala Cache
  • Datanucleus (via JCache)
  • Hibernate (via JCache)
  • .... and probably more, please raise an issue and get it listed!

More...

For more documentation and latest news, see the cache2k homepage.

org.cache2k
High Performance Java Caching

Версии библиотеки

Версия
1.1.2.Alpha
1.1.1.Alpha