← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — Performance educational data only
| |
Last 30 days
6 pings — 2026-05-26 T 15 pings — 2026-05-27 W 68 pings — 2026-05-28 T 6 pings — 2026-05-29 F 13 pings — 2026-05-30 S 17 pings — 2026-05-31 S 12 pings — 2026-06-01 M 16 pings — 2026-06-02 T 34 pings — 2026-06-03 W 55 pings — 2026-06-04 T 145 pings — 2026-06-05 F 121 pings — 2026-06-06 S 205 pings — 2026-06-07 S 121 pings — 2026-06-08 M 50 pings — 2026-06-09 T 55 pings — 2026-06-10 W 34 pings — 2026-06-11 T 24 pings — 2026-06-12 F 21 pings — 2026-06-13 S 4 pings — 2026-06-14 S 18 pings — 2026-06-15 M 26 pings — 2026-06-16 T 17 pings — 2026-06-17 W 25 pings — 2026-06-18 T 14 pings — 2026-06-19 F 11 pings — 2026-06-20 S 27 pings — 2026-06-21 S 23 pings — 2026-06-22 M 36 pings — Yesterday T 30 pings — Today W
Claude 30
PetalBot 26SEMrush 2Ahrefs 2Google 2ChatGPT 2Perplexity 1Bing 1
Scrapy 677Amazonbot 549Perplexity 473Ahrefs 297Google 280ChatGPT 237SEMrush 220Claude 124Unknown AI 119Bing 98Meta AI 67PetalBot 46Majestic 34Qwen 13Sogou 11Common Crawl 3Twitter/X 2DuckDuckGo 1
crawler 3k crawler_json 218 pre-tracking 14
Category total3.3k pings Terms pinged66 / 66 Distinct agents17
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
Index Selectivity & Cardinality PHP 5.0+
High-cardinality columns (user IDs, emails) make effective indexes; low-cardinality columns (boolean, status with 3 values) rarely benefit from single-column indexes.
3mo ago Performance intermediate
Materialized Views PHP 5.0+
Pre-computed query results stored as a real table — dramatically faster reads for expensive aggregations at the cost of periodic refresh overhead.
3mo ago Performance advanced
Memoization
Caching the result of a pure function call keyed by its arguments so repeated calls with the same inputs return immediately.
3mo ago Performance intermediate
Memory Leak PHP 5.0+ 🧠 11
Memory allocated during execution that is never released, causing PHP processes to grow until they exhaust available memory or are restarted.
3mo ago Performance intermediate
N+1 Problem in Doctrine & Eloquent PHP 7.0+
Accidentally issuing one query per related entity instead of one JOIN — the most common ORM performance pitfall, solved by eager loading.
3mo ago Performance intermediate
Object Pooling PHP 7.0+
Reusing a fixed set of pre-initialised expensive objects rather than creating and destroying them on every request — reducing allocation overhead.
3mo ago Performance advanced
Opcode Caching PHP 5.5+ 🧠 3
Storing precompiled PHP bytecode in memory to skip the parse-and-compile phase on subsequent requests.
3mo ago Performance intermediate
Pagination Strategies PHP 5.0+ 🧠 1
Techniques for splitting large result sets across pages to avoid loading unbounded data in a single query.
3mo ago Performance beginner
PHP JIT — When It Helps (and When It Doesn't) PHP 8.0+ 🧠 1
PHP 8.0's JIT compiler converts hot bytecode to native machine code — significant for CPU-bound code, but minimal for typical I/O-bound web requests.
3mo ago Performance advanced
PHP Preloading — Performance Impact PHP 7.4+
Quantifying preloading gains: most benefit on large frameworks (5–15%), negligible on tiny apps — how to measure and tune opcache.preload.
3mo ago Performance advanced
PHP Session Performance & Locking PHP 5.0+
PHP's file-based sessions acquire an exclusive lock per request — blocking concurrent requests from the same user until the lock is released.
3mo ago Performance intermediate
Profiling & Benchmarking PHP 5.0+ 🧠 1
Measuring where a PHP application spends its time and memory to identify the highest-impact optimisation targets.
3mo ago Performance intermediate
Diagram: Query Optimisation Query Optimisation PHP 5.0+ 🧠 1
Analysing and rewriting database queries to reduce execution time, I/O, and resource usage.
3mo ago Performance intermediate
Query Plan & EXPLAIN Analysis 🧠 1
The execution strategy the database engine chooses for a query — analysed with EXPLAIN to identify full scans, missing indexes, and bottlenecks.
3mo ago Performance intermediate
Queue Worker Tuning PHP 7.0+
Configuring PHP queue workers (Laravel Horizon, Supervisor) for throughput, memory limits, graceful restarts, and concurrency — preventing job failures and memory leaks.
3mo ago Performance intermediate
Read Replicas & Database Scaling PHP 5.0+
Directing read queries to replica servers while writes go to the primary — a simple way to scale read throughput horizontally without sharding.
3mo ago Performance intermediate
Redis Patterns (Pub/Sub, Sorted Sets, Lua) PHP 5.0+
Beyond key-value caching, Redis enables queues, leaderboards, rate limiting, pub/sub messaging, and distributed locks via its rich data structures.
3mo ago Performance intermediate
Regex in Loop PHP 5.0+ 🧠 1
Compiling and executing the same regular expression on every iteration of a loop — hoist the pattern outside.
3mo ago Performance intermediate
Slow Query Log PHP 5.0+
A database log of queries exceeding a time threshold — the first place to look when diagnosing PHP application performance problems.
3mo ago Performance beginner
Space Complexity
A measure of how much memory an algorithm uses relative to its input size, expressed in Big O notation.
3mo ago Performance intermediate
✓ schema.org compliant