1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! # `pile` - a simple and fast append-only data store
//!
//! ## Design goals
//!
//! * Efficient adding of bug chunks of data.
//! * A user should be able to copy the storage data (for example, over the network)
//! while still being able to use the database for both reads and writes.
//! * The storage should have a minimal dependency footprint.
//!
//! ## Usage guide
//!
//! ### Example
//!
//! ```rust,ignore
//! use data_pile::Database;
//! let db = Database::new("./pile").unwrap();
//! let value = b"some data";
//! db.put(&value).unwrap();
//! ```
extern crate quickcheck_macros;
use Appender;
pub use Database;
pub use Error;
pub use SeqNoIter;
pub use SharedMmap;