使用并行性遍历列表

时间:2018-08-07 14:25:57

标签: scala concurrency parallel-processing scalatest

我想在测试中加快速度。

listOfUrls.map(url => {
    "call the url" should "return 200" in {
       requesting page and check for HTTP-Code
    }
}

问题在于这种方法是按顺序进行的。 scalatest / scala是否可以为该映射使用并行性?例如:每2秒请求一次页面吗?还是使用指定数量的线程?

0 个答案:

没有答案