view src/lib.rs @ 37:bda56504a12c

Add ShardMergeIterator type. This type is used to merge the shards that are the input to the reduce phase. See https://drive.google.com/open?id=1grB87a0w9fQ2k7i04N3VJvYlw2BldxWNcHublW_ygJs
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 01 Feb 2016 20:35:45 +0000
parents def737737bc8
children ab7d19e012e0
line wrap: on
line source

//! Implements a mapreduce process bounded to one machine;
//! this is supposed to result in better data parallelization.
//!

pub mod closure_mr;
pub mod formats;
pub mod map;
pub mod mapreducer;
pub mod parameters;
pub mod shard_merge;


#[test]
fn it_works() {}