zipora 3.1.2

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Profiling integration - minimal stub.
//!
//! Previously 4,491 LOC of profiling framework (Profiler trait, ProfilerScope,
//! ProfilerRegistry, HardwareProfiler, MemoryProfiler, CacheProfiler,
//! ProfilerReporter, etc.).
//!
//! The actual timing/benchmarking utilities live in `debug.rs` (ScopedTimer,
//! HighPrecisionTimer, BenchmarkSuite, format_duration). This file previously
//! duplicated that functionality with excessive abstraction layers.
//!
//! For profiling, use:
//! - `debug::ScopedTimer` for RAII-based timing
//! - `debug::HighPrecisionTimer` for manual timing
//! - `debug::BenchmarkSuite` for running benchmarks
//! - `debug::format_duration` for human-readable durations