caching

Installation
SKILL.md

Caching

Use this skill when endpoints need read-performance improvements and predictable cache behavior.

Workflow

  1. Identify idempotent read endpoints (GET) suitable for caching.
  2. Enable route-level caching with finite TTL.
  3. Add a stable cache-key strategy when request context affects output.
  4. Verify invalidation expectations against write endpoints.

Core Pattern

from litestar import get
Installs
1
GitHub Stars
7
First Seen
Mar 2, 2026
caching — alti3/litestar-skills