Looks like clojure will have a fork-join implementation which looks like a functional wrapper over java’s fork join framework.
I am wondering what the difference between these and pmap/preduce could be ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Fork-join is more general than the sequence-based
pmap/preduce, and should allow for more fine-grained control over parallelism. The exact APIs for doing this are still up in the air.