You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trying to update the expiry map with value and expiry time for the same key. But the message expires in 60seconds(previous time) rather than 5sec(new time)
#89
The value is added to the map
map.put("key1","value1",ExpirationPolicy.CREATED, 30, TimeUnits.SECONDS);
then i want to update this key with the new value and expiration time like -
map.put("key1","value2",ExpirationPolicy.CREATED, 5, TimeUnits.SECONDS);
but the values expires in 30 seconds rather it should expire in 5 seconds.
The text was updated successfully, but these errors were encountered: