cache2k documentation

A light weight and high performance Java cache library. Android compatible core library.

Лицензия

Лицензия

Категории

Категории

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

Группа

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

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

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

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

1.1.1.Alpha
Дата

Дата

Тип

Тип

pom
Описание

Описание

cache2k documentation
A light weight and high performance Java cache library. Android compatible core library.
Ссылка на сайт

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

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

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

headissue GmbH, Munich

Скачать documentation

Имя Файла Размер
documentation-1.1.1.Alpha.pom 5 KB
Обзор

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

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

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

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

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

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.1.Alpha
1.0.2.Final
1.0.1.Final