laurus 0.8.0

Unified search library for lexical, vector, and semantic retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Index maintenance operations for inverted indexes.
//!
//! This module provides maintenance functionality for inverted indexes:
//! - Background tasks for async operations
//! - Deletion management
//! - Optimization strategies
//! - Transaction support

#[cfg(not(target_arch = "wasm32"))]
pub mod background_tasks;
// pub mod deletion; // Moved to separate crate-level module
pub mod optimization;
pub mod transaction;