oxirs-core 0.2.2

Core RDF and SPARQL functionality for OxiRS - native Rust implementation with zero dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Incremental view maintenance for materialized SPARQL views.
//!
//! This module provides delta-based view invalidation and staleness detection.
//! See [`incremental`] for the core types.

pub mod incremental;

pub use incremental::{
    DeltaChange, IncrementalViewMaintainer, MaterializedView, ViewDefinition, ViewRow,
    ViewStalenessDetector,
};