Exposes external sorting (i.e. on disk sorting) capability on arbitrarily sized iterator, even if the generated content of the iterator doesn't fit in memory. Once sorted, it returns a new sorted iterator.
In order to remain efficient for all implementations, the crate doesn't handle serialization, but leaves that to the user.
The sorter can optionally use rayon
to sort the in-memory buffer. It is generally
faster when the buffer size is big enough for parallelism to have an impact over its overhead.
```rust extern crate extsort; extern crate byteorder;
use extsort::*; use byteorder::{ReadBytesExt, WriteBytesExt}; use std::io::{Read, Write};
struct MyStruct(u32);
impl Sortable for MyStruct {
fn encode
fn decode<R: Read>(read: &mut R) -> Option<MyStruct> {
read.read_u32::<byteorder::LittleEndian>()
.ok()
.map(MyStruct)
}
}
fn main() {
let sorter = ExternalSorter::new();
let reverseddata = (0..1000).rev().map(MyStruct).intoiter();
let sortediter = sorter.sort(reverseddata).unwrap();
let sorteddata: Vec
let expected_data = (0..1000).map(MyStruct).collect::<Vec<MyStruct>>();
assert_eq!(sorted_data, expected_data);
} ```