Is there a MapReduce library for Delphi?

后端 未结 2 1983
轻奢々
轻奢々 2021-02-15 18:32

I recently read this great article which succinctly explains the power of Google\'s MapReduce:

http://www.joelonsoftware.com/items/2006/08/01.html

In Mastering D

相关标签:
2条回答
  • 2021-02-15 18:46

    You could also use Hadoop Streaming to make Hadoop compatible with a mapper and reducer written in any language. Your input-file(s), mapper, and reducer will all interact using STDIN and STDOUT.

    0 讨论(0)
  • 2021-02-15 18:50

    Craig Stuntz wrote a series of posts on his blog (starting here) on higher order functions, and map and fold/reduce in particular. While not a "solid implementation of MapReduce in Delphi available for use", it's certainly a good place to start when implementing your own!

    0 讨论(0)
提交回复
热议问题