From 0ac0af820795a9566f4c78b9e1138b9a7387d775 Mon Sep 17 00:00:00 2001 From: Andreas Olsson Date: Tue, 3 Jan 2017 23:44:17 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 574c3d5..244e930 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ # pmap -A parallel concurrent map implementation in Racket inspired from Clojure pmap. +A pmap implementation in Racket inspired from Clojure's pmap. + +Map applies a funcion to an item one at a time, pmap constructs a future for every item that then run in parallel. + +For heavyer computations the gain is positive, because of the future overhead simpler computations will run wors in pmap than in map. With the help of CarlSmotricz its now refined and tuned to perfection! :-)