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?

link|improve this question

Can you please show the code you're using to verify that expiration works? For example, are you making sure you're testing against a named cache called 'remoteCache'? Btw, just tested that config and after putting a k,v pair in 'remoteCache' and waiting for 15 seconds, when I do a get() on the key, it's gone. – Galder Zamarreño Oct 24 '11 at 10:16
@Galder Zamarreño thanks for your response, added client code to question. – Viren Pushpanayagam Oct 24 '11 at 11:53
Sorry for the delay, don't get notifications when people reply with comments :(. That client code looks fine. I'd suggest enabling TRACE logging on org.infinispan package on the server to see whether the right lifespan is passed on. Maybe the config file is not being passed correctly to the server? How are you starting it? – Galder Zamarreño Feb 15 at 10:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.