create-cache-aside

Installation
SKILL.md

Cache-Aside Generator

Creates Cache-Aside infrastructure with stampede protection and tag-based invalidation.

When to Use

Scenario Example
Read-heavy workloads Product catalog, user profiles
Expensive queries Complex reports, aggregated data
External API responses Third-party API caching
Computed values Pricing calculations, search results

Component Characteristics

CacheAsideInterface

  • get(string $key, callable $loader, int $ttl): mixed — load from cache or compute
  • invalidate(string $key): void — remove specific cache entry
  • invalidateByTag(string $tag): void — remove all entries tagged with given tag
Related skills
Installs
4
GitHub Stars
71
First Seen
Mar 17, 2026