Re: Questions about cache.replace(k,v,v) Ignite 2.10 or 2.11

2021-11-30 Thread Pavel Tupitsyn
Hello Sarra, Ignite considers two objects equal when both are true: - Type ID is the same (same class). - Serialized representation (byte[]) is the same. Ignite does not use standard equals() and hashCode() for comparisons because the DB engine operates on serialized data. We are not aware of an

Questions about cache.replace(k,v,v) Ignite 2.10 or 2.11

2021-11-30 Thread Work
Hello, I am Sarra KHAZRI a software developer located in Canada. We are currently using apache ignite 2.7.5 as a cache and we want to migrate to 2.11.0. The work was almost done but recently i am having problem with cache.replace(k,v,v) that starts to return false. We are using this method ca