Hazelcast弹簧配置

时间:2015-10-20 09:25:57

标签: java spring hazelcast distributed-cache hazelcast-imap

<hz:map>中创建的applicationContext标记与<hz:config>网段中定义的标记之间的区别是什么?

他们是如何相关的?

我知道<hz:map>中的applicationContext会导致创建一个IMap类型的bean,当没有<hz:map>时就不会这样做。

但是,当定义了bean并且随后在hazelcast配置下具有相同名称的<hz:map>时,以下配置会执行什么操作?

<hz:map id="loggedInUserMap" name="loggedInUserMap" instance-ref="ipds" scope="singleton" />
<hz:hazelcast id="ipds">

        <hz:config>

            <hz:instance-name>${hz.instance.name}</hz:instance-name>
            <hz:group name="${hz.group.name}" password="${hz.group.password}"/>

            <hz:map name="loggedInUserMap" backup-count="1" eviction-policy="NONE" in-memory-format="BINARY">
                <hz:near-cache time-to-live-seconds="0" max-idle-seconds="60"
                               eviction-policy="LRU" max-size="5000"  invalidate-on-change="true"/>
            </hz:map>

        </hz:config>

    </hz:hazelcast>

1 个答案:

答案 0 :(得分:3)

<hz:map id="loggedInUserMap" name="loggedInUserMap" 
            instance-ref="ipds" scope="singleton" />

这将导致创建名为'loggedInUserMap'的bean(由id属性指向)。 Hazelcast上下文中的地图名称也将是“loggedInUserMap”(由name属性指向)。

A <hz:map>内的

<hz:config>标记指的是在创建IMap时可以使用的特定配置(此处称为MapConfig)。 hazelcast.xml中可能有许多此类MapConfigs。一个MapConfig也可以使用通配符*由多个IMap共享。

如果您的MapConfig name与hazelcast上下文中使用的地图“name”匹配,则在创建该IMap对象时将使用该配置。在你的情况下,它是“loggedInUserMap”。

如果未找到,名称为“default”的MapConfig将用于创建该IMap对象。

如果未找到,则在创建该IMap对象时将使用IMap的默认值。

我认为以下示例将清楚地解决问题。

示例配置

<hz:config>
    <hz:instance-name>${hz.instance.name}</hz:instance-name>
    <hz:group name="${hz.group.name}" password="${hz.group.password}"/>

    <hz:map name="default" 
        backup-count="2" max-size="0"
        time-to-live-seconds="25" eviction-percentage="30"
        eviction-policy="NONE"/>

    <hz:map name="userMap" 
        backup-count="2" max-size="0" 
        time-to-live-seconds="6000" eviction-percentage="30"
        eviction-policy="NONE"/>

    <hz:map name="FruitMap*" 
        backup-count="2" max-size="0" 
        time-to-live-seconds="10" eviction-percentage="30"
        eviction-policy="NONE"/>

</hz:config>

<hz:map instance-ref="ipds" id="userMapSpringId" name="userMap" />
<hz:map instance-ref="ipds" id="mangoMapSpringId" name="FruitMap1" />
<hz:map instance-ref="ipds" id="appleMapSpringId" name="FruitMap2" />
<hz:map instance-ref="ipds" id="alientFruitMapSpringId" name="AlienFruit" />

示例代码

IMap map1 = (IMap) ctx.getBean("userMapSpringId");
// map1 will make use of the configuration with name "userMap"

IMap map2 = (IMap) ctx.getBean("mangoMapSpringId");
IMap map3 = (IMap) ctx.getBean("appleMapSpringId");
// Here two different IMaps objects are created. 
// However both map2 and map3 will make use of the same configuration "FruitMap*". 

IMap map4 = (IMap) ctx.getBean("alientFruitMapSpringId");
// In the case of map4, there is no configuration which matches its hazelcast name 
// (AlienFruit). Hence it will make use of the configuration with name "default".

我希望带注释的代码段不言自明。