oxcache 0.2.0

A high-performance multi-level cache library for Rust with L1 (memory) and L2 (Redis) caching.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[path = "common/mod.rs"]
pub mod common;

#[path = "performance/performance_test.rs"]
mod performance_test;

#[path = "performance/memory_tests.rs"]
mod memory_tests;

#[path = "performance/memory_leak_test.rs"]
mod memory_leak_test;

#[path = "performance/miri_memory_test.rs"]
mod miri_memory_test;

#[path = "performance/pipeline_performance_test.rs"]
mod pipeline_performance_test;