sort-governor 0.1.3

Process-wide governor for bounded asynchronous sorting: plans in-memory versus external sorts and rations file descriptors and spill memory
Documentation
1
2
3
4
5
6
7
8
9
10
//! The sort plan and the pure planner that chooses it.

mod kind;
mod planner;

#[cfg(test)]
mod tests;

pub use kind::SortPlan;
pub use planner::SortPlanner;