MapDB を使用して並列マップを作成しています - それが安全で、より良い方法で実行できるかどうかを知りたいです。また、各 sales テーブル クエリが 100 万件のレコードになる可能性があると仮定します。
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"));
});
}