-
Hi,
Why did you develop caching abstract api instead of using JSR107 - [Java Caching Api](https://github.com/jsr107)?
ghost updated
6 years ago
-
Apparently there's still only one implementation of JCache module for Guice, and it's a reference one: https://github.com/jsr107/RI/tree/master/cache-annotations-ri/cache-annotations-ri-guice
Conside…
-
Right now, I'm using the Jedis (Java for Redis) library to cache quotes, so that I don't make extra-cluster calls every time someone asks for the price of a given stock. If I've gotten a quote for a …
-
The result of `DefaultCacheStatistics.getCacheAverageGetTime` depends on if JSR107 is used or not.
When using directly Ehcache, it will contain the latency to `get` only. When using JSR107, it will…
-
-
Use Caffeine or JCache API (JSR 107) api design.
-
Our implementations of the 107 method compute, getAndRemove, and getAndPut catch StoreAccessException and then rethrow it as a RuntimeException... this seems questionable. JSR-107 would seem to want …
-
Would it be possible to reuse the same UI to monitor other clusters? For example Apache Ignite which also implements JCache (JSR 107) spec?
https://ignite.incubator.apache.org/
-
今日收获:
1. 知道Cache支持Generic、JCache (JSR-107)、EhCache 2.x、Hazelcast、Infinispan、Redis、Guava、Simple等;
2. 知道以下注解的用法:@CacheConfig、@Cacheable、@CachePut、@CacheEvict();
-
```
To allow for the use of a different caching implementation create an
abstraction for the CacheManager and Ehcache APIs. It would be good where
possible to use matching APIs from the JSR-107 spec…