Even after setting an expiration time in the config, InfiniSpan does not seem to be expiring the object. below is the config file.
<global>
<globalJmxStatistics enabled="true" jmxDomain="org.infinispan"
cacheManagerName="SampleCacheManager" />
<transport clusterName="infinispan-cluster" machineId="m1"
rackId="r1" nodeName="Node-A">
</transport>
</global>
<default>
<locking isolationLevel="READ_COMMITTED"
lockAcquisitionTimeout="20000" writeSkewCheck="false"
concurrencyLevel="5000" useLockStriping="false" />
<jmxStatistics enabled="true" />
</default>
<namedCache name="remoteCache">
<clustering mode="distribution">
<hash numOwners="1" rehashWait="120000" rehashRpcTimeout="600000" />
<async />
</clustering>
<eviction wakeUpInterval="500" />
<expiration lifespan="10000" wakeUpInterval="500" />
</namedCache>
However if I pass the expiration time using the client it works fine (but this is not what I want).
I also tried the steps in this article but still no success.
below is the test client
public static void write() {
RemoteCacheManager cacheContainer = null;
cacheContainer = new RemoteCacheManager(
"localhost:6904;localhost:6907", false);
cacheContainer.start();
Cache cache = cacheContainer.getCache("remoteCache");
cache.start();
cache.put("1111", "1111");
cache.stop();
cacheContainer.stop();
System.out.println("put value 1111");
}
public static void read() {
RemoteCacheManager cacheContainer = new RemoteCacheManager(
"localhost:6904;localhost:6907", false);
cacheContainer.start();
Cache cache = cacheContainer.getCache("remoteCache");
cache.start();
System.out.println(cache.containsKey("1111"));
String value = (String) cache.get("1111");
cache.stop();
cacheContainer.stop();
System.out.println("get value " + value);
}
Is there anything I am doing wrong?