solana_validator_optimizer/
lib.rs

1//! solana-validator-optimizer library interface
2//!
3//! # Overview
4//! This library provides tools to optimize Solana validator performance,
5//! including snapshot prefetching, RPC response caching, Prometheus metrics,
6//! and configuration auto-tuning.
7
8pub const VERSION: &str = "1.1.0";
9
10/// Returns a summary description of what this library provides.
11pub fn help_summary() -> &'static str {
12    "Optimizes Solana validator performance using snapshot prefetching, RPC caching, and Prometheus metrics."
13}
14
15// Re-export internal modules for public API access
16pub mod config;
17pub mod config_autotuner;
18pub mod metrics;
19pub mod rpc_cache_layer;
20pub mod snapshot_prefetcher;
21pub mod blockstream_optimizer;
22pub mod utils;
23