13 个版本
0.2.0 | 2021年11月6日 |
---|---|
0.1.3 | 2021年3月6日 |
0.1.2 | 2020年7月4日 |
0.1.1 | 2019年8月29日 |
0.0.1 | 2016年11月26日 |
在 数据结构 中排名第630
每月下载142次
在 3 crate 中使用
105KB
2.5K SLoC
提交日志
为Rust编写的顺序,基于磁盘的提交日志库。该库可以用于在分布式日志(如Paxos、链式复制或Raft)之上构建各种高级分布式抽象。
用法
首先,将以下内容添加到您的 Cargo.toml
[dependencies]
commitlog = "0.1"
extern crate commitlog;
use commitlog::*;
fn main() {
// open a directory called 'log' for segment and index storage
let opts = LogOptions::new("log");
let mut log = CommitLog::new(opts).unwrap();
// append to the log
log.append("hello world").unwrap(); // offset 0
log.append("second message").unwrap(); // offset 1
// read the messages
let messages = log.read(0, ReadLimit::default()).unwrap();
for msg in messages.iter() {
println!("{} - {}", msg.offset(), String::from_utf8_lossy(msg.payload()));
}
// prints:
// 0 - hello world
// 1 - second message
}
先有技术
依赖项
~420–750KB
~10K SLoC