← CodeClarityLab Home
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — Performance educational data only
| |
Last 30 days
24 pings — 2026-04-08 W 1 ping — 2026-04-09 T 21 pings — 2026-04-10 F 22 pings — 2026-04-11 S 9 pings — 2026-04-12 S 31 pings — 2026-04-13 M 5 pings — 2026-04-14 T 6 pings — 2026-04-15 W 7 pings — 2026-04-16 T 36 pings — 2026-04-17 F 26 pings — 2026-04-18 S 50 pings — 2026-04-19 S 31 pings — 2026-04-20 M 9 pings — 2026-04-21 T 14 pings — 2026-04-22 W 13 pings — 2026-04-23 T 43 pings — 2026-04-24 F 56 pings — 2026-04-25 S 11 pings — 2026-04-26 S 6 pings — 2026-04-27 M 10 pings — 2026-04-28 T 20 pings — 2026-04-29 W 29 pings — 2026-04-30 T 45 pings — 2026-05-01 F 41 pings — 2026-05-02 S 25 pings — 2026-05-03 S 13 pings — 2026-05-04 M 7 pings — 2026-05-05 T 11 pings — Yesterday W 12 pings — Today T
ChatGPT 1
Google 2
Amazonbot 460Perplexity 439Google 170Ahrefs 151Unknown AI 119ChatGPT 111SEMrush 74Majestic 16Meta AI 4Qwen 3DuckDuckGo 1
crawler 1.5k crawler_json 68 pre-tracking 14
Category total1.5k pings Terms pinged66 / 66 Distinct agents10
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
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.
1d 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.
1mo 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.
1mo 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.
1mo 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.
1mo 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.
1mo 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
Redis PHP 7.0+
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.
2mo 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.
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.
2mo 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.
2mo 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.
2mo ago performance intermediate
PHP Async Frameworks PHP 8.1+
ReactPHP and Amp provide event-loop async I/O — enabling concurrent HTTP requests without blocking.
2mo ago performance advanced
Resource Prefetching HTML5
dns-prefetch, preconnect, preload, and prefetch hints — fetching critical resources early to reduce perceived load time.
2mo ago performance intermediate
RoadRunner — Persistent PHP Worker PHP 8.0+
Go-based server keeping PHP workers alive between requests — eliminating per-request bootstrap cost.
2mo ago performance advanced
Swoole / OpenSwoole PHP 7.4+
PHP extension with coroutines, async I/O, and built-in HTTP server — handling thousands of concurrent connections in one process.
2mo ago performance advanced
Worker Pool Patterns PHP 5.0+
Fixed pool of pre-spawned workers for parallel tasks — avoiding per-task process spawn overhead.
2mo ago performance advanced
Diagram: APCu — In-Process User Cache APCu — In-Process User Cache PHP 5.4+
APCu stores PHP values in shared memory within the PHP-FPM pool — the fastest possible cache with no network hop overhead.
2mo ago performance intermediate
Diagram: Asset Versioning & Browser Cache Strategy Asset Versioning & Browser Cache Strategy
Serving static assets with immutable long-lived cache headers plus content-hash filenames — maximising cache hits while guaranteeing instant cache-busting on change.
2mo ago performance beginner
Diagram: Async Processing / Job Queues Async Processing / Job Queues PHP 5.0+
Deferring time-consuming work (emails, image processing, third-party API calls) to background workers via a queue, improving response times.
2mo ago performance intermediate
✓ schema.org compliant