view src/lib.rs @ 99:e6b0d8ebe0f1

Implement dedicated type for caching mapping inputs
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 08 Feb 2016 20:36:55 +0000
parents 168e8777de73
children 500571302783
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 controller;
pub mod formats;
pub mod input_cache;
mod map;
pub mod mapreducer;
pub mod parameters;
pub mod record_types;
mod reduce;
mod shard_merge;
mod sort;

#[test]
fn it_works() {}