我正在使用MapDB创建并行映射 - 想知道它是否安全并且能够以更好的方式完成。还假设每个销售表查询可以产生数百万条记录。
public static void main(String[] args){
DB db = DBMaker.newFileDB("mapdbFile").transactionDisable().mmapFileEnablePartial().make();
getEmployees().parallelStream().forEach(e -> createRecords(e, db));
}
private static List<Employee> getEmployees(){
/* return employees list */
}
private static void createRecords(Employee employee, DB db) {
JdbcTemplate template = /* spring JdbcTemplate creation */
String query = "select name from sales where emp_id = "+employee.getId();
final BTreeMap<String, Long> map = db.createTreeMap("Employee" + employee.getId())
.nodeSize(32).comparator(String.CASE_INSENSITIVE_ORDER).make();
template.query(query, rs -> {
put(map, rs.getString("product_name"), rs.getLong("sales"));
});
}
答案 0 :(得分:0)
DB对象已同步且线程安全。所以,是的,并行地图创建是安全的。