From f61eefb0fcf83933a361b1e7d6b7008152e20005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Ho=C3=9F?= Date: Sun, 8 Jan 2017 18:23:15 +0100 Subject: [PATCH] fix #197 - mention triava as JCache implementation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sebastian Hoß --- README.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.asciidoc b/README.asciidoc index be643d0..7780799 100755 --- a/README.asciidoc +++ b/README.asciidoc @@ -460,7 +460,7 @@ In order to use this project, declare the following inside your POM: ---- Replace `${version.memoization}` with the pass:[latest release]. This project follows the link:http://semver.org/[semantic versioning guidelines]. -Popular JCache implementations are link:http://www.ehcache.org/[Ehcache], link:http://commons.apache.org/proper/commons-jcs/[Commons JCS], link:https://hazelcast.org/[Hazelcast], link:http://infinispan.org/[Infinispan], link:https://ignite.apache.org/[Apache Ignite] and link:http://www.alachisoft.com/tayzgrid/[TayzGrid]. +Popular JCache implementations are link:http://www.ehcache.org/[Ehcache], link:http://commons.apache.org/proper/commons-jcs/[Commons JCS], link:https://hazelcast.org/[Hazelcast], link:http://infinispan.org/[Infinispan], link:https://ignite.apache.org/[Apache Ignite], link:http://www.alachisoft.com/tayzgrid/[TayzGrid] and link:https://github.com/trivago/triava[triava]. Use link:https://github.com/jhalterman/expiringmap[ExpiringMap], link:https://github.com/ben-manes/concurrentlinkedhashmap[ConcurrentLinkedHashMap], link:https://github.com/OpenHFT/Chronicle-Map[Chronicle-Map], link:http://www.cacheonix.org/[Cacheonix] or other `ConcurrentMap` implementations as alternatives to the default `ConcurrentHashMap` used in the `MapMemoize` factory. Caches like link:http://cache2k.org/[cache2k] can be used together with both `JCacheMemoize` as a JSR-107 cache and `MapMemoize` by calling `cache.asMap()`. === Compatibility