Hazelcast缓存未根据<time-to-live-seconds>逐出

时间:2015-09-22 12:04:03

标签: spring caching hazelcast spring-cache hazelcast-imap

我们将<time-to-live-seconds>配置为1200(20分钟),但缓存在缓存创建时间一分钟后自动逐出。

有人可以告诉我们如何在指定的时间段内使用缓存吗?

1 个答案:

答案 0 :(得分:6)

hazelcast.xml下面的代码段为&#34; simpleMap&#34;中的条目设置time-to-live-seconds属性为150秒。超过150秒且未更新150秒的条目将自动从地图中逐出。

<map name="simpleMap">
    <backup-count>0</backup-count>
    <max-idle-seconds>0</max-idle-seconds>
    <eviction-policy>LRU</eviction-policy>
    <time-to-live-seconds>30</time-to-live-seconds>
    <max-size>3000</max-size>
    <eviction-percentage>30</eviction-percentage>
    <merge-policy>com.hazelcast.map.merge.PutIfAbsentMapMergePolicy</merge-policy>
</map>

我已将一个条目监听器(如果使用ver3.5,请使用MapListener接口)附加到&#34; simpleMap&#34;用于测试目的,只要从地图中逐出条目,就会打印密钥和值。

public static void main(String[] args) 
{
    HazelcastInstance instance = HazelcastHelper.getHazelcastInstance();
    IMap<String, String> map = instance.getMap("simpleMap");
    map.addEntryListener(new SimpleMapEntryListener(), true);

    map.put("evictme", "value");
    printTime();
    try {
        Thread.sleep(1000 * 60);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    printTime();
}

private static void printTime()
{
    Calendar cal = Calendar.getInstance();
    SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
    System.out.println( sdf.format(cal.getTime()) );
}

class SimpleMapEntryListener implements EntryListener<String, String>
{

    @Override
    public void entryEvicted(EntryEvent<String, String> arg0) 
    {
        System.out.println("Key : " + arg0.getKey() + " Value: " + arg0.getOldValue() + " evicted.");
        // print current time here.
    }
    // Add other overriden methods.

}

如果您执行上面给出的代码,您可以看到该条目&lt;&#34; evictme&#34;,&#34; value&#34;&gt;仅在30秒后自动被逐出。

您可能还需要检查max-idle-seconds配置(请参见上例中的设置为零,这意味着无限)。如果设置(即非零),则缓存将根据max-idle-seconds被逐出。