concurrent-cache

Fast Flexible efficient in memory LRU Java cache

Лицензия

Лицензия

Группа

Группа

com.github.barakb
Идентификатор

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

concurrent-cache
Последняя версия

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

1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

concurrent-cache
Fast Flexible efficient in memory LRU Java cache
Ссылка на сайт

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

https://github.com/barakb/Cache
Система контроля версий

Система контроля версий

https://github.com/barakb/Cache

Скачать concurrent-cache

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

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

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-site jar 1.7.12
org.slf4j : slf4j-api jar 1.7.12

test (4)

Идентификатор библиотеки Тип Версия
org.apache.logging.log4j : log4j-slf4j-impl jar 2.2
org.apache.logging.log4j : log4j-api jar 2.2
org.apache.logging.log4j : log4j-core jar 2.2
junit : junit jar 4.12

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

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

Build Status

Cache -- An LRU Java Cache

DESCRIPTION

Fast Flexible efficient in memory LRU Java cache This repository has the sources to my post.

Barak.

Sample Usage:

    Cache<String, byte[]> fileContentCache =
            new Cache<>(key -> readFileContent(new File(key)), 10);

See example

Maven dependency

    <dependency>
        <groupId>com.github.barakb</groupId>
        <artifactId>concurrent-cache</artifactId>
        <version>1.0</version>
    </dependency>

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

Версия
1.0