Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在终端上运行 hazelcast 时,我使用 m.put 创建一个新的地图功能。我想创建另一个名称不同的地图功能。有可能这样做吗?是否有单独的命令来创建新的地图功能?请帮忙..!!提前致谢
我自己从 Stackoverflow 得到了答案。!您可以使用命令 ns [the_map_name] //切换命名空间以使用分布式队列/map/set/list(默认为“default”)
m 不是地图的名称,它是命令的一部分。
例如,您有一张名为“students”的地图,并希望在该地图中添加一条新记录。你应该:
ns 学生 m.put(key, value)