Better alternative to pmap in Clojure for parallelizing moderately inexpensive functions over big data?

后端 未结 4 647
离开以前
离开以前 2020-12-24 12:17

Using clojure I have a very large amount of data in a sequence and I want to process it in parallel, with a relatively small number of cores (4 to 8).

The ea

4条回答
  •  星月不相逢
    2020-12-24 12:59

    You can use some sort of map/reduce implemented by hand. Also take a look at swarmiji framework.

    "A distributed computing system that helps writing and running Clojure code in parallel - across cores and processors"

提交回复
热议问题