This content has been marked as final.
Show 2 replies
-
1. Re: Try to disable return value from cache
galder.zamarreno Feb 27, 2018 9:33 AM (in response to moshelatin)This is a bug, infinispan.client.hotrod.force_return_values should be applied. Remote JCacheManager overrides this:
public JCacheManager(URI uri, ClassLoader classLoader, CachingProvider provider, Properties properties) {
...
builder.forceReturnValues(true);
...
Also, JCache.put() calls a put method that returns a V. Extra work is being done when it's not needed.
-
2. Re: Try to disable return value from cache
galder.zamarreno Feb 27, 2018 9:40 AM (in response to galder.zamarreno)