wernerdv commented on code in PR #13408:
URL: https://github.com/apache/ignite/pull/13408#discussion_r3681048184


##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearGetRequest.java:
##########
@@ -67,15 +64,16 @@ public class GridNearGetRequest extends GridCacheIdMessage 
implements GridCacheD
 
     /** */
     @GridToStringInclude
-    private LinkedHashMap<KeyCacheObject, Boolean> keyMap;
+    @Marshalled(keys = "keys", values = "readersFlags")
+    Map<KeyCacheObject, Boolean> keyMap;

Review Comment:
   After the changes, HashMap will be created instead of LinkedHashMap in 
`GridNearGetRequestMarshaller#unmarshal`:
   `msg.keyMap = U.newHashMap(msg.keys.size());`
   
   Is there a problem with that?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to