TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Simple MapReduce with Javascript

4 pointsby makuchakuabout 14 years ago

2 comments

Stukabout 14 years ago
This isn't a particularly good example as you're doing all the work adding up the word counts in your reduce function.<p>A better example would count the occurrences of the words in each line in the map, and then add up the totals in reduce.
makuchakuabout 14 years ago
Any good MapReduce Javascript libraries (client side) I could use to build more complex examples?