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
//! Query optimization strategies for OxiRS.
//!
//! - [`runtime_feedback`]: Adaptive optimizer that learns from execution statistics.

pub mod runtime_feedback;

pub use runtime_feedback::{AdaptiveQueryOptimizer, QueryStats, RuntimeFeedbackStore};