0
    I am using hazelCast-3.0 jars . I am able to create vertical cluster(on the same System where only port no. differ from one server to other Ip remains the same.) and its working  pretty good.But i want to create horizontal cluster(where i can use any ip address along with any port no. depending on the configuration). If this is possible in hazelCast then please share how. i went through several links like http://www.hazelcast.com/docs/1.9.4/manual/multi_html/ch11.html
    if this link is useful the suggest me how. I made only change to hazelcast.xml.
    <tcp-ip enabled="true">
                    <hostname>172.22.65.111</hostname>
                    <hostname>172.22.68.19</hostname>
                    <interface>172.22.*.*</interface>               
                </tcp-ip>

両方のシステムで同じjarファイルが使用されています。マップ名「xyz」を作成し、値を保存します。次に、同じマップ名「xyz」を持つ他のシステムで使用できるようにする必要があります。これが私のシステムで使用しているコードです clientConfig.addAddress("172.22.65.111:5701"); System.out.println("p2"); HazelcastInstance クライアント = HazelcastClient .newHazelcastClient(clientConfig);

            IMap<Integer, String> map = client.getMap("m");
            map.put(1,"ram");

2 番目のシステムにも、ip とポートを除いて同じコードがあります。そして、置くのではなく、他のシステムに乗ろうとしています。

4

2 に答える 2

0

hazelcast 3.0 clone-griddatamaster に基づいた新しいメモリ グリッドを見つけました。

griddatamaster.wordpress.com

于 2013-09-21T16:13:51.690 に答える