What does Async mode of ForkJoinPool mean? Javadoc mentions that it makes queues (is it per-thread queue?) FIFO instead of LIFO. What does it mean in practice?
does anyone know if a version of the QuickSort algorithm exists which uses the ForkJoin Framework introduced in Java7 and takes Collections as input? I've found some wich simply sort Integer-arrays ...
What are the benefits of using the new fork/join framework over just simply splitting the big task into N subtasks in the beginning, sending them to a cached ...