一旦达到配置的条目数/大小,就无法刷新haselcast缓存

时间:2015-11-17 12:01:45

标签: caching hazelcast hazelcast-imap

想要清除hazelcast缓存。因此,一旦缓存达到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

有没有办法在达到max-size时将缓存内容刷新到文件/ db中?

1 个答案:

答案 0 :(得分:0)

地图配置中有evictionPercentage。当达到最大尺寸时,这个百分比的条目被驱逐。

另请注意,hazelcast是针对大量条目而设计的,每个分区都会进行驱逐。因此,我建议您使用1000多个条目进行测试,以查看预期结果。