Files
turso/core/mvcc
Pekka Enberg bc7269a776 Fix typo
2023-04-13 10:41:01 +03:00
..
2023-04-13 10:41:01 +03:00
2023-04-08 15:14:05 +03:00
2023-04-12 12:39:14 +03:00
2023-04-08 15:14:05 +03:00
2023-04-08 15:14:05 +03:00
2023-04-13 10:09:13 +03:00

MVCC for Rust

This is a work-in-progress Rust implementation of the Hekaton optimistic multiversion concurrency control algorithm.

Development

Run tests:

cargo test

Test coverage report:

cargo tarpaulin -o html

Run benchmarks:

cargo bench

Run benchmarks and generate flamegraphs:

echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid
cargo bench --bench my_benchmark -- --profile-time=5

References

Larson et al. High-Performance Concurrency Control Mechanisms for Main-Memory Databases. VLDB '11