libsql-wal 0.1.0-alpha.1

wal implementation for libsql
Documentation
1
2
3
4
5
6
7
8
use super::SegmentSet;

pub mod identity;
pub mod log_strategy;

pub trait PartitionStrategy {
    fn partition(&self, segments: &SegmentSet) -> Vec<SegmentSet>;
}