Will be there any performance benefit between the below if we execute these
statements from client and getting the whole CustomObject on client side:

1. Executing on client side with KeepBinary
IgniteCache<Integer, BinaryObject> cache = igniteInstance.cache("cache")
                    .withKeepBinary();
BinaryObject value = cache.get(1);
CustomObject object = <CustomObject>value;


2. Executing on client side without KeepBinary
IgniteCache<Integer, CustomObject> cache = igniteInstance.cache("cache");
CustomObject object = cache.get(1);



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Performance-benefit-of-using-withKeepBinary-when-getting-the-whole-object-on-client-side-tp10389.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to