oxcache 0.1.2

A high-performance, production-ready Rust multi-level cache library providing L1 (Moka) and L2 (Redis) caching.
Documentation
# ==================== Cargo/Rust ====================
# Build artifacts
/target/
target/*
!target/.gitkeep

# Rust-specific
**/*.rs.bk

# Dependencies lock
Cargo.lock

# ==================== IDE/Editors ====================
.idea/
.vscode/
*.swp
*.swo
*~

# macOS/Windows
.DS_Store
Thumbs.db

# ==================== Environment ====================
.env
.env.local
.env.*.local

# ==================== Logs & Temp ====================
*.log
logs/
temp/
*.tmp
*.temp
*.temp.*

# ==================== Database ====================
# WAL files
*_wal.db
*.wal
*-wal.db
wal_*

# Shared memory
*-shm
*.sqlite-shm
*_shm.db

# ==================== Testing ====================
coverage/
.tarpaulin/
tests/test_crate/

# ==================== Project Specific ====================
.cargo/
.trae/

# Documentation drafts
docs/prd.md
docs/task.md
docs/tdd.md
docs/test.md
docs/uat.md
IFLOW.md

# ==================== Language Specific ====================
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
.venv/

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# ==================== Additional ====================
.cache/
*.pid
*.seed
*.pid.lock