56 releases (16 breaking)

0.19.4 Sep 10, 2019
0.19.1 Aug 27, 2019
0.17.0 May 12, 2019
0.13.1 Mar 31, 2019
0.4.2 Mar 9, 2018

#160 in Database implementations

Download history 73/week @ 2024-07-22 62/week @ 2024-07-29 62/week @ 2024-08-05 96/week @ 2024-08-12 48/week @ 2024-08-19 111/week @ 2024-08-26 52/week @ 2024-09-02 41/week @ 2024-09-09 79/week @ 2024-09-16 305/week @ 2024-09-23 80/week @ 2024-09-30 4/week @ 2024-10-07 50/week @ 2024-10-14 43/week @ 2024-10-21 62/week @ 2024-10-28 61/week @ 2024-11-04

216 downloads per month
Used in 14 crates (via index)

MIT/Apache

315KB
7.5K SLoC

pagecache

Build Status documentation

A construction kit for databases. Provides a lock-free log store and pagecache.

References

use {
    pagecache::{pin, Materializer, Config},
    serde::{Serialize, Deserialize},
};


#[derive(
    Clone, Eq, PartialEq, Ord, PartialOrd, Debug, Serialize, Deserialize,
)]
pub struct TestState(String);

impl Materializer for TestState {
    // Used to merge chains of partial pages into a form
    // that is useful for the `PageCache` owner.
    fn merge(&mut self, other: &TestState) {
        self.0.push_str(&other.0);
    }
}

fn main() {
    let config = pagecache::ConfigBuilder::new().temporary(true).build();
    let pc: pagecache::PageCache<TestState> =
        pagecache::PageCache::start(config).unwrap();
    {
        // We begin by initiating a new transaction, which
        // will prevent any witnessable memory from being
        // reclaimed before we drop this object.
        let tx = pc.begin().unwrap();

        // The first item in a page should be set using allocate,
        // which signals that this is the beginning of a new
        // page history.
        let (id, mut key) = pc.allocate(TestState("a".to_owned()), &tx).unwrap();

        // Subsequent atomic updates should be added with link.
        key = pc.link(id, key, TestState("b".to_owned()), &tx).unwrap().unwrap();
        key = pc.link(id, key, TestState("c".to_owned()), &tx).unwrap().unwrap();

        // When getting a page, the provided `Materializer` is
        // used to merge all pages together.
        let (mut key, page, size_on_disk) = pc.get(id, &tx).unwrap().unwrap();

        assert_eq!(page.0, "abc".to_owned());

        // You can completely rewrite a page by using `replace`:
        key = pc.replace(id, key, TestState("d".into()), &tx).unwrap().unwrap();

        let (key, page, size_on_disk) = pc.get(id, &tx).unwrap().unwrap();

         assert_eq!(page.0, "d".to_owned());
    }
}

Dependencies

~2–9MB
~82K SLoC