Merge pull request #47 from jstepien/pmap
Parallelize read-posts with pmap
This commit is contained in:
commit
b96a872654
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@
|
||||||
(fn [mu]
|
(fn [mu]
|
||||||
(->>
|
(->>
|
||||||
(find-posts config mu)
|
(find-posts config mu)
|
||||||
(map #(parse-post % config mu))))
|
(pmap #(parse-post % config mu))))
|
||||||
(m/markups))
|
(m/markups))
|
||||||
(sort-by :date)
|
(sort-by :date)
|
||||||
reverse))
|
reverse))
|
||||||
|
|
Loading…
Reference in a new issue