From 51c4855c60c35c6c88dd1f69c5d8c71a8e6a7d05 Mon Sep 17 00:00:00 2001 From: Maurice Gamanho Date: Thu, 26 Sep 2024 09:45:39 -0600 Subject: [PATCH] Update ReadWriteBackingMap.java --- .../main/java/com/tangosol/net/cache/ReadWriteBackingMap.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prj/coherence-core/src/main/java/com/tangosol/net/cache/ReadWriteBackingMap.java b/prj/coherence-core/src/main/java/com/tangosol/net/cache/ReadWriteBackingMap.java index fbf0ecdb13ac5..820f78cccabc3 100644 --- a/prj/coherence-core/src/main/java/com/tangosol/net/cache/ReadWriteBackingMap.java +++ b/prj/coherence-core/src/main/java/com/tangosol/net/cache/ReadWriteBackingMap.java @@ -1144,6 +1144,7 @@ protected Object putToInternalMap(Object binKey, Object binValue, long cExpiry) } else if (cExpiry <= CacheMap.EXPIRY_DEFAULT) { + log("**MG** mapInternal.put(1)"); return mapInternal.put(binKey, binValue); } @@ -1217,6 +1218,7 @@ protected Object removeInternal(Object oKey, boolean fBlind) { // set the value to BIN_ERASE_PENDING queue.add(instantiateEntry(oKey, BIN_ERASE_PENDING, oValue, 0L), 0L); + log("**MG** mapInternal.put(3)"); getInternalCache().put(oKey, BIN_ERASE_PENDING); getPendingRemoves().add(oKey); fQueued = true; @@ -1602,6 +1604,7 @@ protected void putToInternalCache(Object oKey, Object oVal, long cMillis) } else { + log("**MG** mapInternal.put(2)"); mapInternal.put(oKey, oVal); } } @@ -2804,6 +2807,7 @@ public void entryDeleted(MapEvent evt) else { Object oValueOld = evt.getOldValue(); + log("**MG** mapInternal.put(4)"); Object oValue = getInternalCache().put(oKey, oValueOld); if (oValue != null && !equals(oValue, oValueOld)) {