Implement Caching Strategy
Commands performance 361
npx claude-code-templates@latest --command performance/implement-caching-strategy Content
Implement Caching Strategy
Design and implement caching solutions: $ARGUMENTS
Instructions
Caching Strategy Analysis
- Analyze application architecture and identify caching opportunities
- Assess current performance bottlenecks and data access patterns
- Define caching requirements (TTL, invalidation, consistency)
- Plan multi-layer caching architecture (browser, CDN, application, database)
- Evaluate caching technologies and storage solutions
Browser and Client-Side Caching
- Configure HTTP caching headers and cache policies for static assets
- Implement service worker caching strategies for progressive web apps
- Set up browser storage caching (localStorage, sessionStorage, IndexedDB)
- Configure CDN caching rules and edge optimization
- Implement cache-first, network-first, and stale-while-revalidate strategies
Application-Level Caching
- Implement in-memory caching for frequently accessed data
- Set up distributed caching with Redis or Memcached
- Design cache key naming conventions and namespacing
- Implement cache warming strategies for critical data
- Configure cache expiration and TTL policies
Database Query Caching
- Implement query result caching for expensive database operations
- Set up prepared statement caching and connection pooling
- Design cache invalidation strategies for data consistency
- Implement materialized views for complex aggregations
- Configure database-level caching features and optimizations
API Response Caching
- Implement API endpoint response caching with appropriate headers
- Set up middleware for automatic response caching
- Configure GraphQL query caching and field-level optimization
- Implement conditional requests with ETag and Last-Modified headers
- Design cache invalidation for API data updates
Cache Invalidation Strategies
- Design intelligent cache invalidation based on data dependencies
- Implement event-driven cache invalidation systems
- Set up cache tagging and bulk invalidation mechanisms
- Configure time-based and trigger-based invalidation policies
- Implement cache versioning and rollback strategies
Frontend Caching Strategies
- Implement client-side data caching with libraries like React Query
- Set up component-level caching and memoization
- Configure asset bundling and chunk caching strategies
- Implement progressive image loading and caching
- Set up offline-first caching for PWAs
Cache Monitoring and Analytics
- Set up cache performance monitoring and metrics collection
- Track cache hit rates, miss rates, and efficiency metrics
- Monitor cache memory usage and storage optimization
- Implement cache performance alerting and notifications
- Analyze cache usage patterns and optimization opportunities
Cache Warming and Preloading
- Implement automated cache warming for critical data
- Set up scheduled cache refresh and preloading strategies
- Design on-demand cache generation for popular content
- Configure cache warming triggers based on usage patterns
- Implement predictive caching based on user behavior
Testing and Validation
- Set up cache performance testing and benchmarking
- Implement cache consistency validation and testing
- Configure cache invalidation testing scenarios
- Test cache behavior under high load and failure conditions
- Validate cache security and data isolation requirements
Focus on implementing caching strategies that provide the most significant performance improvements while maintaining data consistency and system reliability. Always measure cache effectiveness and adjust strategies based on real-world usage patterns.