mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-22 21:07:43 +00:00
13898f0af9
* perf: reduce the cost of is_deleted check * perf: speedup get_or_insert container * perf: reduce the cost of get or insert with * fix: store len * perf: cache cursor for text insertions * chore: fix warnings
41 lines
1.5 KiB
Rust
41 lines
1.5 KiB
Rust
use criterion::black_box;
|
|
use loro_internal::{loro::ExportMode, LoroDoc, VersionVector};
|
|
|
|
fn main() {
|
|
use bench_utils::TextAction;
|
|
use std::time::Instant;
|
|
|
|
let actions = bench_utils::get_automerge_actions();
|
|
let loro = LoroDoc::default();
|
|
loro.start_auto_commit();
|
|
let start = Instant::now();
|
|
// loro.subscribe_deep(Box::new(|_| ()));
|
|
let text = loro.get_text("text");
|
|
let n = 100;
|
|
let mut v = VersionVector::new();
|
|
for _ in 0..n {
|
|
for TextAction { del, ins, pos } in actions.iter() {
|
|
text.delete(*pos, *del).unwrap();
|
|
text.insert(*pos, ins).unwrap();
|
|
}
|
|
loro.commit_then_renew();
|
|
black_box(loro.export(ExportMode::updates(&v)).unwrap());
|
|
v = loro.oplog_vv();
|
|
}
|
|
println!("Apply time {:?}", start.elapsed());
|
|
loro.diagnose_size();
|
|
drop(actions);
|
|
let start = Instant::now();
|
|
let snapshot = loro.export(ExportMode::Snapshot).unwrap();
|
|
println!("Snapshot encoding time {}", start.elapsed().as_millis());
|
|
let compressed = zstd::encode_all(&mut snapshot.as_slice(), 0).unwrap();
|
|
println!(
|
|
"Snapshot encoding time including compression {}",
|
|
start.elapsed().as_millis()
|
|
);
|
|
println!("Snapshot size {}", snapshot.len());
|
|
println!("Snapshot size after compression {}", compressed.len());
|
|
let start = Instant::now();
|
|
let _doc = LoroDoc::from_snapshot(&snapshot);
|
|
println!("Snapshot importing time {:?}", start.elapsed());
|
|
}
|