laurus 0.7.0

Unified search library for lexical, vector, and semantic retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Document storage module.
//!
//! This module provides the unified document store, write-ahead log (WAL), and segment
//! management infrastructure used to persistently store and retrieve documents.
//!
//! # Submodules
//!
//! - [`document`] -- Segmented document storage (`UnifiedDocumentStore`) with binary segment
//!   files, a JSON manifest for segment metadata, and readers/writers for individual segments.
//! - [`log`] -- Write-ahead log for crash-safe document ingestion.

pub mod document;
pub mod log;