← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #performance educational data only
| |
Last 30 days
27 pings — 2026-05-26 T 81 pings — 2026-05-27 W 229 pings — 2026-05-28 T 63 pings — 2026-05-29 F 51 pings — 2026-05-30 S 55 pings — 2026-05-31 S 55 pings — 2026-06-01 M 37 pings — 2026-06-02 T 104 pings — 2026-06-03 W 222 pings — 2026-06-04 T 391 pings — 2026-06-05 F 325 pings — 2026-06-06 S 539 pings — 2026-06-07 S 349 pings — 2026-06-08 M 174 pings — 2026-06-09 T 140 pings — 2026-06-10 W 97 pings — 2026-06-11 T 119 pings — 2026-06-12 F 72 pings — 2026-06-13 S 19 pings — 2026-06-14 S 61 pings — 2026-06-15 M 68 pings — 2026-06-16 T 60 pings — 2026-06-17 W 72 pings — 2026-06-18 T 51 pings — 2026-06-19 F 72 pings — 2026-06-20 S 96 pings — 2026-06-21 S 91 pings — 2026-06-22 M 88 pings — Yesterday T 97 pings — Today W
Claude 94SEMrush 2Bing 1
PetalBot 55SEMrush 10ChatGPT 6Ahrefs 5Google 5Bing 5Perplexity 2
Amazonbot 1.9kScrapy 1.8kPerplexity 1.4kGoogle 980Ahrefs 935ChatGPT 874SEMrush 672Unknown AI 419Claude 388Bing 269Meta AI 243PetalBot 176Majestic 144Sogou 55Qwen 32Common Crawl 9Twitter/X 3DuckDuckGo 3NotebookLM 2Brave Search 2
crawler 9.6k crawler_json 707 pre-tracking 76
Tag total10.4k pings Terms pinged223 / 223 Distinct agents19
Level All Beginner Intermediate Advanced Tag: performance
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
Database Bulk Operations PHP 7.0+
Process many rows in a single SQL statement or batched transaction instead of one round-trip per row, for far higher throughput.
6d ago Database intermediate
Inline Expansion 🧠 5
A compiler optimization that replaces a function call with the body of the called function, eliminating call overhead and unlocking further optimizations.
3w ago Compiler advanced
AI Model Quantization
Compressing neural network weights and activations to lower-precision formats (int8, int4, fp8) to shrink memory and accelerate inference.
1mo ago AI / ML 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.
2mo ago Performance intermediate
Database Query Result Streaming PHP 8.0+ 🧠 2
Processing large result sets row-by-row without loading the entire dataset into memory - essential for PHP CLI scripts handling millions of rows.
2mo ago Database intermediate
Prompt Caching
API feature where a static prompt prefix (system instructions, large context) is cached server-side, dramatically reducing cost and latency on repeated calls that share the prefix.
2mo ago AI / ML intermediate
Memory Management in JavaScript
JavaScript uses automatic garbage collection — the engine reclaims memory when objects are no longer reachable. Memory leaks occur when references are unintentionally retained, preventing collection.
3mo ago JavaScript 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.
3mo 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.
3mo 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.
3mo 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.
3mo 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.
3mo ago Performance intermediate
Script Loading (defer, async, type=module)
How and when browser downloads and executes JavaScript — defer, async, and type=module control whether scripts block HTML parsing and in what order they run.
3mo ago Frontend intermediate
HTTP/2 Server Push & Early Hints 🧠 2
HTTP/2 Server Push lets a server proactively send assets (CSS, JS, fonts) before the browser requests them. 103 Early Hints is its practical successor — sending Link preload headers before the full response is ready.
3mo ago Networking intermediate
Memory-Mapped Files
A file mapped directly into a process's virtual address space — reads and writes go through the OS page cache rather than read()/write() syscalls, enabling fast access to large files and shared memory between processes.
3mo ago Linux advanced
MySQL Connection Pooling PHP 5.1+ 🧠 1
Reusing database connections across requests instead of opening and closing a new connection on every request.
3mo ago PHP intermediate
MySQL EXPLAIN
A MySQL query analysis command showing the execution plan — which indexes are used, how many rows are scanned, and where bottlenecks are.
3mo ago Database intermediate
Diagram: MySQL Index Types MySQL Index Types
B-tree, FULLTEXT, SPATIAL, and HASH indexes — each optimised for different query patterns.
3mo ago Database intermediate
MySQL LIMIT and OFFSET Pagination 🧠 1
LIMIT restricts result row count; OFFSET skips rows for pagination — but OFFSET-based pagination degrades on large tables.
3mo ago Database intermediate
MySQL Query Cache (Deprecated)
A server-side cache for SELECT results removed in MySQL 8.0 — it caused severe scalability issues under concurrent writes.
3mo ago Database intermediate
✓ schema.org compliant