sqlitegraph 2.2.3

Embedded graph database with full ACID transactions, HNSW vector search, dual backend support, and comprehensive graph algorithms library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cache-enabled fast-path for pattern matching.
//!
//! This module provides an optimized version of pattern matching that uses
//! adjacency cache as a fast-path while maintaining identical results
//! to the SQL-based implementation.

pub mod edge_validation;
pub mod fast_path_detection;
pub mod fast_path_execution;
#[cfg(test)]
mod tests;

pub use fast_path_execution::match_triples_fast;