oxirs-tdb 0.3.1

Apache Jena TDB/TDB2 compatible RDF storage engine with B+Tree indexes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Indexing structures and query helpers for the TDB store.
//!
//! This module re-exports index access helpers from [`store_impl`] and provides
//! convenience wrappers around B-tree page scanning and range queries used
//! internally by the store.

// The actual indexing structures (TripleIndexes, SPO/POS/OSP B-tree pages)
// live in crate::index. This file serves as the index-layer facade within
// the store module and can be extended with store-specific index helpers.

// Public re-export to keep the facade clean.
pub use crate::index::{Triple, TripleIndexes};