1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Configuration Advisor for Composite Storage.
//!
//! This module provides an HTTP API for analyzing and optimizing composite
//! storage configurations. It helps users understand trade-offs between
//! different backend configurations and provides suggestions for optimal setup.
//!
//! # Features
//!
//! - **Configuration Analysis**: Validate and analyze backend configurations
//! - **Capability Coverage**: Check which FHIR operations are supported
//! - **Query Simulation**: Simulate query routing and cost estimation
//! - **Optimization Suggestions**: Get recommendations based on workload patterns
//!
//! # Example
//!
//! ```ignore
//! use helios_persistence::advisor::{AdvisorServer, AdvisorConfig};
//!
//! let config = AdvisorConfig {
//! host: "127.0.0.1".to_string(),
//! port: 8081,
//! };
//!
//! let server = AdvisorServer::new(config);
//! server.run().await?;
//! ```
pub use ;
pub use ;
pub use ;
pub use ;