← Home ← Codex ← DEBT ← Engine
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — Performance educational data only
| |
Last 30 days
18 pings — 2026-08-09 S 19 pings — 2026-08-10 M 22 pings — 2026-08-11 T 24 pings — 2026-08-12 W 37 pings — 2026-08-13 T 37 pings — 2026-08-14 F 51 pings — 2026-08-15 S 17 pings — 2026-08-16 S 61 pings — 2026-08-17 M 22 pings — 2026-08-18 T 15 pings — 2026-08-19 W 11 pings — 2026-08-20 T 15 pings — 2026-08-21 F 29 pings — 2026-08-22 S 28 pings — 2026-08-23 S 16 pings — 2026-08-24 M 26 pings — 2026-08-25 T 33 pings — 2026-08-26 W 15 pings — 2026-08-27 T 31 pings — 2026-08-28 F 14 pings — 2026-08-29 S 43 pings — 2026-08-30 S 27 pings — 2026-08-31 M 24 pings — 2026-09-01 T 20 pings — 2026-09-02 W 28 pings — 2026-09-03 T 39 pings — 2026-09-04 F 41 pings — 2026-09-05 S 43 pings — Yesterday S 2 pings — Today M
Common Crawl 2
Amazonbot 22Yandex 14PetalBot 3Bing 2Sogou 1Twitter/X 1
Amazonbot 731Scrapy 677Ahrefs 532PetalBot 518Google 514SEMrush 505Perplexity 503ChatGPT 490Bing 289Claude 164Applebot 147Unknown AI 126Brave Search 108Twitter/X 93Meta AI 70Majestic 43Baidu 35Common Crawl 33Sogou 27Qwen 18Yandex 14DuckDuckGo 5You.com 3NotebookLM 2ShapBot 2
crawler 5.4k crawler_json 248 your_contextpost 3 pre-tracking 14
Category total5.6k pings Terms pinged67 / 67 Distinct agents24
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
False Sharing
A cache coherence pathology where threads on different cores modify independent variables sharing a cache line, causing costly invalidations.
2mo ago Performance advanced
Memory Pressure Detection PHP 7.0+
Proactively identifying when a PHP process approaches its memory limit so corrective action can be taken before a fatal error.
4mo ago Performance intermediate
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.
5mo 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.
5mo ago Performance intermediate
Image Optimisation
Reducing image file size and delivery overhead through format choice (AVIF, WebP), compression, responsive sizing (srcset), lazy loading, and explicit dimensions — the single highest-impact performance lever for most websites.
5mo ago Performance intermediate
Largest Contentful Paint (LCP)
A Core Web Vital that measures when the largest above-fold content element (typically the hero image or main heading) becomes visible — target under 2.5 seconds. The most impactful page speed metric.
5mo ago Performance intermediate
Resource Hints (preconnect, prefetch, preload)
HTML link attributes that instruct the browser to take early action on resources — opening connections, fetching future pages, or loading critical assets before they are discovered in HTML parsing.
5mo ago Performance intermediate
Caching Strategies PHP 7.0+ 🧠 1
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.
6mo ago Performance intermediate
Redis PHP 7.0+ 🧠 4
An in-memory key-value data store used in PHP applications for caching, session storage, queues, rate limiting, and pub/sub — providing sub-millisecond data access compared to database queries.
6mo ago Performance beginner
Brotli vs gzip Compression PHP 5.0+
Brotli (br) compresses 15-25% better than gzip for text content — use Brotli for supported browsers (all modern ones), gzip as fallback, both configured at the server level not PHP.
6mo 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.
6mo ago Performance intermediate
HTTP/3 & QUIC
HTTP/3 runs over QUIC (UDP-based) instead of TCP — eliminating head-of-line blocking, reducing connection setup time, and improving performance on lossy networks.
6mo ago Performance advanced
Image Optimisation PHP 7.0+
Serving images in modern formats (WebP, AVIF), at the correct size, with appropriate compression — typically the single biggest performance win for image-heavy pages.
6mo ago Performance intermediate
PHP Async Frameworks PHP 8.1+ 🧠 9
ReactPHP and Amp provide event-loop async I/O — enabling concurrent HTTP requests without blocking.
6mo ago Performance advanced
Resource Prefetching HTML5
dns-prefetch, preconnect, preload, and prefetch hints — fetching critical resources early to reduce perceived load time.
6mo ago Performance intermediate
RoadRunner — Persistent PHP Worker PHP 8.0+
Go-based server keeping PHP workers alive between requests — eliminating per-request bootstrap cost.
6mo ago Performance advanced
Swoole / OpenSwoole PHP 7.4+ 🧠 2
PHP extension with coroutines, async I/O, and built-in HTTP server — handling thousands of concurrent connections in one process.
6mo ago Performance advanced
Worker Pool Patterns PHP 5.0+
Fixed pool of pre-spawned workers for parallel tasks — avoiding per-task process spawn overhead.
6mo ago Performance advanced
Diagram: APCu — In-Process User Cache APCu — In-Process User Cache PHP 5.4+ 🧠 4
APCu stores PHP values in shared memory within the PHP-FPM pool — the fastest possible cache with no network hop overhead.
6mo ago Performance intermediate
Diagram: Asset Versioning & Browser Cache Strategy Asset Versioning & Browser Cache Strategy 🧠 1
Serving static assets with immutable long-lived cache headers plus content-hash filenames — maximising cache hits while guaranteeing instant cache-busting on change.
6mo ago Performance beginner
✓ schema.org compliant