我已经安装了 HazelCast 2.5。我想将我的记录保存到磁盘中。我了解到 MapStore 可以完成这项工作。但是我不确定如何实现 MapStore。
到目前为止我写的代码:
public class MyMaps implements MapStore<String,String> {
public static Map<Integer, String> mapCustomers = Hazelcast.getMap("customers");
public static void main(String[] args) {
{
mapCustomers.put(1, "Ram");
mapCustomers.put(2, "David");
mapCustomers.put(3, "Arun");
}
}
}
我如何将所有这些条目放入磁盘。
是否需要有 MySQL 或 PostgreSQL 之类的后端才能使用此类?
我相信可以使用以下功能:
public void delete(String arg0);
public void deleteAll(String arg0);
public void store(String arg0);
public void storeAll(String arg0);
我需要一个如何实现 MapStore 的示例片段。
请向我提供示例代码。