ForkJoinPool in Java 7
The new ForkJoinPool in Java 7 provides significant performance improvement for programs that involve recursion. As mentioned in the Java website, the basic principle is: if (my portion of the work is small enough) do the work directly else split my work into two pieces invoke the two pieces and wait for the… Read More ForkJoinPool in Java 7