Redis Page Cache Notes
Public pages are cached in Redis. Every content change bumps a cache namespace so invalidation stays simple.
Why namespace busting
Deleting by wildcard is noisy and error-prone. A versioned namespace is cleaner.
Result
- Fast repeat requests
- Simple content invalidation
- Predictable operational behavior
Related Posts
More →Markdown and Code Block Guide
Markdown and Code Block Guide This is a reference post for editor testing. Lists Item one Item two Item three Code Image 
Redis Page Cache Notes
Redis Page Cache Notes Public pages are cached in Redis. Every content change bumps a cache namespace so invalidation stays simple. Why namespace busting Delet…