cachingCaching strategies, invalidation, eviction policies, HTTP caching, distributed caching, and anti-patterns. Use when designing cache layers, choosing eviction policies, debugging stale data, or optimizing read-heavy workloads.
Install via ClawdBot CLI:
clawdbot install wpank/cachingGrade Good — based on market validation, documentation quality, package completeness, maintenance status, and authenticity signals.
Calls external URL not in known-safe list
https://github.com/wpank/ai/tree/main/skills/api/cachingAudited Apr 17, 2026 · audit v1.0
Generated Mar 1, 2026
An online retailer uses cache-aside with Redis to store product details and inventory, reducing database load during flash sales. They implement TTL-based invalidation with a 5-minute TTL for catalog data and event-based invalidation for inventory updates to ensure strong consistency.
A social platform employs read-through caching with Redis to serve personalized user feeds, leveraging LFU eviction for skewed popularity. They use HTTP caching with ETags for API responses to minimize bandwidth and ensure fresh content delivery.
A trading platform uses write-through caching with in-memory LRU for real-time market data, ensuring strong consistency for read-heavy workloads. They implement cache stampede prevention with mutex locks to avoid database overload during high-frequency updates.
A hospital system utilizes write-behind caching with SQLite for patient records, allowing high write throughput with eventual consistency. They apply private Cache-Control directives for browser caching to secure sensitive data while maintaining fast access.
A streaming service leverages CDN caching with refresh-ahead strategies for video assets, using immutable Cache-Control headers for hashed files. They implement tag-based invalidation to purge content across distributed caches when updates occur.
A SaaS provider integrates caching to optimize multi-tenant applications, using Redis for shared data across processes to reduce latency and scale read-heavy workloads. This improves user experience and allows for tiered pricing based on performance features.
An e-commerce platform employs distributed caching with consistent hashing to handle high traffic during peak seasons, using cache layers from browser to database to speed up page loads. This increases conversion rates and reduces infrastructure costs.
An API service uses HTTP caching with ETags and Cache-Control directives to minimize server load and bandwidth usage for clients. They implement version-based invalidation for static assets, enabling scalable monetization through API call limits and premium caching tiers.
💬 Integration Tip
Start with cache-aside and Redis for production defaults, then layer in HTTP caching and eviction policies based on specific data access patterns to avoid overcomplication.
Scored Apr 19, 2026
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Systematic code review patterns covering security, performance, maintainability, correctness, and testing — with severity levels, structured feedback guidance, review process, and anti-patterns to avoid. Use when reviewing PRs, establishing review standards, or improving review quality.
Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.
Provides a 7-step debugging protocol plus language-specific commands to systematically identify, verify, and fix software bugs across multiple environments.
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
Ship production code with AI agents through acceptance contracts, micro diffs, red green loops, and deterministic handoff checkpoints.