tegdb 0.5.0

The name TegridyDB (short for TegDB) is inspired by the Tegridy Farm in South Park and tries to correct some of the wrong database implementations, such as null support, implicit conversion support, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod config;
pub mod error;
pub mod parser;
pub mod restore;
pub mod s3_backend;
pub mod state;
pub mod tailer;

pub use config::Config;
pub use error::{Error, Result};
pub use parser::{find_last_commit_offset, parse_record, RecordParser};
pub use restore::Restore;
pub use s3_backend::S3Backend;
pub use state::ReplicationState;
pub use tailer::Tailer;