Hi!If I do a cache.put( new AffinityKey( key, value), myvalue); and later on want to update the value, do I need do a:
cache.put( new AffinityKey( key, value), newvalue); or can I do: cache.put( key, newvalue);If I do a put on a value that is already in the cache using a "non" affinity key, will the existing affinity information on the key be lost of I don't use the AffinityKey everytime I update the cache ?
