Null is returned for a not expired entry in Hot Rod client

Solution In Progress - Updated -

Issue

For a mortal entry (lifespan > -1), overwriting it with lifespan=-1 (make it immortal) unexpectedly removes the entry like follows.

    cache.put(key, "value1", 100, TimeUnit.SECONDS, 100, TimeUnit.SECONDS);
    cache.get(key); // returns "value1"
    cache.put(key, "value2", -1, TimeUnit.SECONDS, 100, TimeUnit.SECONDS);
    cache.get(key); // returns null, expected "value2"
    cache.put(key, "value3", -1, TimeUnit.SECONDS, 100, TimeUnit.SECONDS);
    cache.get(key); // returns "value3"

In library mode, the 2nd get returns non-null as expected. The same behaviour is observed for a transient (maxIdle > -1) entry also.

Environment

  • Red Hat JBoss Data Grid (JDG)
    • 6.5.0

Subscriber exclusive content

A Red Hat subscription provides unlimited access to our knowledgebase, tools, and much more.

Current Customers and Partners

Log in for full access

Log In

New to Red Hat?

Learn more about Red Hat subscriptions

Using a Red Hat product through a public cloud?

How to access this content