greppy/daemon/mod.rs
1//! Background daemon for fast queries
2//!
3//! The daemon provides:
4//! - Sub-millisecond search (indexes kept in memory)
5//! - File watching for incremental index updates
6//! - Query caching
7//! - Event broadcasting for real-time updates
8
9pub mod cache;
10pub mod client;
11pub mod events;
12pub mod process;
13pub mod protocol;
14pub mod server;
15pub mod watcher;