Configure Redis and cache strategies

java-cacheskillsetup L20
limited-grisaille833/claude-java-plugins
What it does

Design and configure caching strategies

Best for

Reducing database load and latency by applying the right caching pattern (local, distributed, cache-aside, write-through) for your workload.

Inputs
  • · Use case or query pattern
  • · Performance requirements (latency, throughput)
Outputs
  • · Recommended cache pattern
  • · Config examples (Spring Cache, Redis, Caffeine)
  • · Invalidation strategy
Requires
  • · Spring Cache, Redis, Caffeine, Memcached (depending on choice)
Preconditions

Understand data consistency vs. performance tradeoff; baseline load metrics helpful

Failure modes
  • · Cache invalidation bugs if not carefully designed
  • · Distributed cache failures require failover strategy