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 的默认地图。我们可以做 - m.put 、 m.get 等。但假设我想创建一个命名地图,或者我想查看某个应用程序已经创建的地图。hazelcast 控制台有可能吗?
您可以使用命令 ns [the_map_name] //切换命名空间以使用分布式队列/map/set/list(默认为“default”)
m 不是地图的名称,它是命令的一部分。
例如,您有一张名为“students”的地图,并希望在该地图中添加一条新记录。你应该:
> ns students > m.put(key, value)