I found an example on how to use withPool. It says I just need to add the word Parallel to Groovy's methods like collect, find, each, put it into withPool and it executes the code parallel.
import static groovyx.gpars.GParsPool.withPool
list = 1..1000000
withPool{
squares = list.collectParallel { it * it}
}
println squares
Is there any chance to check if it's really parallel?
I tried a benchmark test with the same code but the sequential way
and the parallel way was much more slowly.