oxcache 0.4.3

A high-performance multi-level cache library for Rust with L1 (memory) and L2 (Redis) caching.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2025-2026 Kirky.X
// SPDX-License-Identifier: MIT
// Macros Tests Module
//
// Contains integration tests for the #[cached] proc macro.

#![cfg(feature = "macros")]
#![allow(clippy::duplicate_mod)]

#[path = "macros/skip_cache_write_test.rs"]
mod skip_cache_write_test;

#[path = "macros/sync_test.rs"]
mod sync_test;