[
https://issues.jboss.org/browse/ISPN-7631?page=com.atlassian.jira.plugin....
]
Dan Berindei commented on ISPN-7631:
------------------------------------
This also applies to entries returned by {{AdvancedCache.getCacheEntry()}}. Since it also
returns a {{Map.Entry}} implementation, I should be able to check the value of an entry
with
{code:java}
new AbstractMap.SimpleEntry("k",
"v").equals(cache.getAdvancedCache().getCacheEntry("k"))
{code}
Cache.entrySet() entries don't implement Map.Entry.equals()
correctly
---------------------------------------------------------------------
Key: ISPN-7631
URL:
https://issues.jboss.org/browse/ISPN-7631
Project: Infinispan
Issue Type: Bug
Components: Core
Affects Versions: 9.0.0.CR2
Reporter: Dan Berindei
Assignee: Pedro Ruivo
The {{Map.Entry.equals()}} javadoc says "Returns true if the given object is also a
map entry and the two entries represent the same mapping.", meaning any other
metadata stored in cache entries (e.g. lifespan) must be ignored for the purpose of
checking equality. In other words, this code should work regardless of what entries are
stored in the cache or in the invocation context:
{code:java}
cache.entrySet().contains(new AbstractMap.SimpleEntry("k", "v"))
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)