项目作者: ufukhalis

项目描述 :
Reactive simple in-memory cache
高级语言: Java
项目地址: git://github.com/ufukhalis/r-cache.git
创建时间: 2019-07-21T20:21:46Z
项目社区:https://github.com/ufukhalis/r-cache

开源协议:Apache License 2.0

下载


Build Status
Coverage Status

R-Cache

Reactive simple in-memory cache option.

How to Use

Firstly, you should add latest r-cache dependency to your project.

  1. <dependency>
  2. <groupId>io.github.ufukhalis</groupId>
  3. <artifactId>r-cache</artifactId>
  4. <version>0.1.0</version>
  5. </dependency>

Then, you can create an instance like below.

  1. RCache<String, String> rCache = new RCache.Builder()
  2. .maxSize(5) // Default 100
  3. .expire(Duration.ofSeconds(2)) // Default 5 mins
  4. .cachePoolSize(5) // Default 10
  5. .build();

After instance creation, you can use R-Cache methods like below.

Add element to cache

  1. Mono<Void> result = rCache.put("key", "value");

Remove element from cache

  1. Mono<Void> result = rCache.remove("key");

Get element from cache

  1. Mono<String> result = rCache.get("key");

Note

This project is still under development. But you can use in your projects.

For more information about Project Reactor, check the site https://projectreactor.io

License

All code in this repository is licensed under the Apache License, Version 2.0. See LICENCE.