如何控制scala并行集合的并发性

时间:2012-01-20 05:02:05

标签: scala parallel-processing

从2.9开始,我们可以通过单个方法par创建并行集合。它既简单又简单,但如何控制并行集合的并发性?

1 个答案:

答案 0 :(得分:5)

在2.9.1上,以下方法对我有用:

collection.parallel.ForkJoinTasks
  .defaultForkJoinPool.setParallelism(<number of needed threads>)

请参阅this question