view src/lib.rs @ 66:9d7c1468f1b2

Started implementation of reduce phase
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 06 Feb 2016 00:08:38 +0000
parents 6a51cc42d1a6
children 168e8777de73
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 record_types;
pub mod reduce;
pub mod shard_merge;
pub mod sort;

#[test]
fn it_works() {}