tsink 0.10.2

A lightweight embedded time-series database with a straightforward API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Visibility publication, tombstones, and visibility caches.
//!
//! This parent stays as the visibility owner entry point while detailed cache
//! and tombstone logic lives under `src/engine/visibility/`.

use parking_lot::{RwLockReadGuard, RwLockWriteGuard};
use roaring::RoaringTreemap;

use super::*;
use crate::engine::tombstone::{self, TombstoneMap, TombstoneRange};

#[path = "visibility/cache.rs"]
mod cache;
#[path = "visibility/fence.rs"]
mod fence;
#[path = "visibility/tombstones.rs"]
mod tombstones;