0

想要清除榛树缓存。这样一旦缓存达到 Max Entries 或 Max Heap Size,就将其刷新到文件中。

hazelcast.xml 中的配置

<map name="TEST_CACHE">
    <max-size policy="PER_NODE">3</max-size>
    <eviction-policy>LFU</eviction-policy> 
</map>

测试代码

public class Test implements EntryEvictedListener , Serializable{

    private static final long serialVersionUID = -1927328346902661527L;
    private static HazelcastInstance hazelcastInstance = HazelCacheUtil
            .getHazelCacheInstance();
    private static volatile IMap<Object, Object> hazel_cache = hazelcastInstance
            .getMap("TEST_CACHE");

    public static void main(String[] args) throws Exception {
        hazel_cache.addEntryListener(new Test(),true);

        for (int i = 0; i < 3; i++) {
            hazel_cache.put(i+1, new Test());
        }
        System.out.println(hazel_cache);

        System.out.println("");
        for (Entry e : hazel_cache.entrySet()) {
            System.out.println(e.getKey() + " : " + e.getValue());
        }
    }

    @Override
    public void entryEvicted(EntryEvent e) {
        System.out.println(e.getKey()+" : "+e.getOldValue()+"\n");
    }
}

在 entryEvicted 我只得到第三个条目对象

 Entry EVICTED :: 1
3 : com.test.CAO.Test@5a6b6126

一旦达到最大大小,有没有办法将缓存内容刷新到文件/数据库中?

4

1 回答 1

0

地图配置中有一个 evictionPercentage。当达到最大大小时,此百分比的条目将被逐出。

另请注意,hazelcast 专为大量条目而设计,并且逐个分区完成。因此,我建议您使用 1000 多个条目进行测试以查看预期结果。

于 2015-11-18T09:51:20.877 回答