map/reduce frameworks are usually used for very large datasets. However the map/reduce workflow works well for some tasks.
Clojure makes it easy to have a map reduce framework that utilizes all the CPUs.
And here the word count (the map reduce "Hello World") example:
Small and furry, well ... definitely furry. [source]
Wednesday, January 5, 2011
Subscribe to:
Post Comments (Atom)
good example!!
ReplyDeletebut why (mapcat identity lst) instead (apply concat lst)??