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
8pub mod cache;
9pub mod client;
10pub mod process;
11pub mod protocol;
12pub mod server;
13pub mod watcher;