Skip to main content

Crate graphos_core

Crate graphos_core 

Source
Expand description

§graphos-core

Core layer for Graphos: graph models, index structures, and execution primitives.

This crate provides the fundamental data structures for storing and querying graph data. It depends only on graphos-common.

§Modules

  • graph - Graph model implementations (LPG, RDF)
  • index - Index structures (Hash, BTree, Chunked Adjacency, Trie)
  • execution - Execution primitives (DataChunk, ValueVector, Operators)

Re-exports§

pub use graph::lpg::Edge;
pub use graph::lpg::LpgStore;
pub use graph::lpg::Node;
pub use index::adjacency::ChunkedAdjacency;

Modules§

execution
Execution primitives for vectorized query processing.
graph
Graph model implementations.
index
Index structures for efficient graph queries.