oxcache 0.1.4

A high-performance multi-level cache library for Rust with L1 (memory) 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/

# ==================== 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*

# ==================== Project Specific ====================
# Development tools
.cargo/
.trae/
.iflow/
openspec/
.sisyphus/
.ruff_cache/
.claude/
.opencode/

# Documentation drafts
docs/prd.md
docs/task.md
docs/tdd.md
docs/test.md
docs/uat.md
IFLOW.md
CONDITIONAL_COMPILATION.md
FEATURE_MIGRATION_GUIDE.md
AGENTS.md
requirements.db

# ==================== Additional ====================
.cache/
*.pid
*.seed
*.pid.lock
CLAUDE.md
.worktrees/