Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 mongodb 中,单键的 mapReduce 是否比 2 或 3 个键的 mapReduce 快?我有这个疑问,因为无论如何我们需要 O(n) 来映射它们,其中 n 是集合的大小
您是指具有多个发射的 mapReduce,还是具有像 { x : 1, y : 1 } 这样的复合键的 mapReduce?每个 doc 发出多个键可以使 reduce 阶段稍长一些,因为有更多的数据要组合。复合发出的密钥会使发出的数据更大,因此会有存储(和网络)开销。