← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
✕ Clear A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Core Web Vitals
Google's three field-measured performance metrics — LCP (loading), INP (interactivity), CLS (visual stability) — used as direct search ranking signals since 2021.
2mo ago performance intermediate
Cumulative Layout Shift (CLS)
A Core Web Vital that measures unexpected visual movement of page elements during load — caused by images without dimensions, late-injected content, and font swaps. Target: under 0.1.
2mo ago performance intermediate
Caching Strategies PHP 7.0+
Patterns for when and how to store and invalidate cached data — cache-aside, write-through, write-behind, and read-through each make different trade-offs between consistency, complexity, and performance.
2mo ago performance intermediate
Cache Warming Strategies PHP 5.0+
Pre-populating a cache before traffic arrives — preventing the cold-start thundering herd where every request misses a cold cache simultaneously after a deploy.
3mo ago performance intermediate
Diagram: Caching Strategies (APCu, Redis, Memcached) Caching Strategies (APCu, Redis, Memcached) PHP 5.0+
Storing computed results or fetched data so future requests can be served without repeating expensive operations.
3mo ago performance intermediate
Diagram: CDN Edge Caching CDN Edge Caching PHP 5.0+
Content Delivery Networks cache responses at edge nodes close to users — reducing latency and origin load, controlled via Cache-Control headers.
3mo ago performance intermediate
Diagram: Connection Pooling Connection Pooling PHP 5.0+
Reusing a pool of pre-established database connections rather than opening and closing a new connection on every request.
3mo ago performance intermediate
Diagram: Covering Index Covering Index
An index that contains all columns referenced by a query, allowing the database to answer it entirely from the index without touching the table.
3mo ago performance intermediate
✓ schema.org compliant