端末で hazelcast を実行すると、 m.put を使用して新しいマップ関数を作成します。別の名前で別のマップ関数を作成したいと考えています。そうすることは可能ですか?新しいマップ関数を作成する別のコマンドはありますか? 助けてください..!!前もって感謝します
質問する
118 次
1 に答える
2
I got the answer myself from Stackoverflow.! You can use the command ns [the_map_name] //switch the namespace for using the distributed queue/map/set/list (defaults to "default")
m is not the name of map, it is part of the command.
For example you have a map named "students" and want to put a new record to this map. You should:
ns students
m.put(key, value)
于 2013-01-23T06:09:14.570 に答える