xerg 0.2.1

Ultra-fast grep implementation in Rust - built for maximum speed with direct output and parallel processing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Search functionality and related modules
//!
//! This module contains all search-related functionality including:
//! - File system crawling and traversal
//! - File reading strategies with adaptive performance
//! - Core search operations with pattern matching
//!
//! The search module uses a three-tier file reading system:
//! - Streaming for small files (<7MB)
//! - Bulk reading for medium files (7MB-100MB)  
//! - Memory mapping for large files (>100MB)

pub mod crawler;
pub mod default;
pub mod reader;
pub mod xtreme;