Skip to content
StackPractices

Tag: cache

Browse 5 practical software engineering resources tagged with "cache". Discover code recipes, design patterns, documentation templates, and in-depth guides to help you build, deploy, and maintain production-ready solutions involving cache.

Configure Caffeine Cache in Java with Eviction Policies

Set up Caffeine cache in a Java application with size-based, time-based, and weighted eviction policies for high-performance local caching.

Cache Database Queries with Django Cache Framework

Use Django's built-in cache framework with per-view caching, template fragment caching, and low-level cache API for database query optimization.

Caching with Redis

How to implement application caching using Redis for performance and scalability.

Connect to Redis

How to connect to Redis and perform basic operations in Python, JavaScript, and Java.

Redis Cache Patterns for High-Performance Applications

How to implement cache-aside, write-through, and write-behind patterns with Redis to reduce database load and improve response times