Update README.md

This commit is contained in:
Andreas Olsson 2017-01-03 23:44:17 +01:00 committed by GitHub
parent 96331db074
commit 0ac0af8207

View File

@ -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! :-)