[
https://issues.jboss.org/browse/TEIID-4994?page=com.atlassian.jira.plugin...
]
Ramesh Reddy resolved TEIID-4994.
---------------------------------
Resolution: Won't Fix
TEIID-4918 should improve performance in materialization case, this changes the behavior
of the existing translator, so it will not be considered for now.
For materialization, use "Ignore return values" option to
improve performance
-----------------------------------------------------------------------------
Key: TEIID-4994
URL:
https://issues.jboss.org/browse/TEIID-4994
Project: Teiid
Issue Type: Enhancement
Components: Infinispan
Affects Versions: 8.12.x-6.4, 9.3.2
Reporter: Van Halbert
Assignee: Ramesh Reddy
Fix For: 10.0
For a performance improvement, change to use Flag.IGNORE_RETURN_VALUES
Cache noPreviousValueCache =
cache.getAdvancedCache().withFlags(Flag.IGNORE_RETURN_VALUES);
noPreviousValueCache.put(k, v);
or can use ConfigurationBuilder settings:
ConfigurationBuilder cb = new ConfigurationBuilder();
cb.unsafe().unreliableReturnValues(true);
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)