oxirs-fuseki 0.2.4

SPARQL 1.1/1.2 HTTP protocol server with Fuseki-compatible configuration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Caching subsystem for OxiRS Fuseki
//!
//! Provides intelligent query result caching with semantic invalidation.

pub mod query_cache;
pub mod sparql_cache;

pub use query_cache::{
    Binding, CacheEntry, CacheStats as QueryCacheStats, DatasetVersionTracker,
    QueryCacheKey as QueryResultCacheKey, QueryResultCache,
};
pub use sparql_cache::{
    CacheStats, CachedQueryResult, QueryCacheKey, SparqlQueryCache, SparqlQueryType,
};