← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #performance educational data only
| |
Last 30 days
7 pings — 2026-05-06 W 85 pings — 2026-05-07 T 81 pings — 2026-05-08 F 234 pings — 2026-05-09 S 63 pings — 2026-05-10 S 8 pings — 2026-05-11 M 20 pings — 2026-05-12 T 39 pings — 2026-05-13 W 37 pings — 2026-05-14 T 89 pings — 2026-05-15 F 16 pings — 2026-05-16 S 16 pings — 2026-05-17 S 27 pings — 2026-05-18 M 19 pings — 2026-05-19 T 39 pings — 2026-05-20 W 71 pings — 2026-05-21 T 82 pings — 2026-05-22 F 273 pings — 2026-05-23 S 36 pings — 2026-05-24 S 25 pings — 2026-05-25 M 28 pings — 2026-05-26 T 88 pings — 2026-05-27 W 231 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 — Yesterday W 217 pings — Today T
Amazonbot 39Perplexity 16ChatGPT 11Scrapy 6Google 4Ahrefs 3SEMrush 2
Amazonbot 10Perplexity 9ChatGPT 8Google 3Claude 1Scrapy 1
Amazonbot 1.9kPerplexity 1.4kChatGPT 799Ahrefs 718Google 666SEMrush 476Unknown AI 412Claude 294Meta AI 242Scrapy 222Bing 175Majestic 74Qwen 17Sogou 13DuckDuckGo 2
crawler 6.7k crawler_json 673 pre-tracking 76
Tag total7.4k pings Terms pinged222 / 222 Distinct agents14
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
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+ 🧠 1
Storing precompiled PHP bytecode in memory to skip the parse-and-compile phase on subsequent requests.
3mo ago performance intermediate
Output Buffering (ob_start / ob_flush) PHP 4.0+
Capturing PHP output into a buffer rather than sending it immediately, enabling manipulation before delivery or header modification.
3mo ago php intermediate
Pagination Strategies PHP 5.0+
Techniques for splitting large result sets across pages to avoid loading unbounded data in a single query.
3mo ago performance beginner
PHP FFI PHP 7.4+
Foreign Function Interface — allows PHP to call C library functions and use C data structures directly, enabling integration with native libraries without writing a PHP extension.
3mo ago php advanced
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
Diagram: PHP Preloading (opcache.preload) PHP Preloading (opcache.preload) PHP 7.4+
Loading PHP files into shared memory at server start so every worker process gets pre-compiled bytecode with zero per-request filesystem overhead.
3mo ago php 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
Diagram: PHP-FPM PHP-FPM PHP 5.3+ 🧠 2
PHP FastCGI Process Manager — a high-performance PHP process manager that manages worker pools for web servers like Nginx.
3mo ago php intermediate
Preload, Prefetch & Preconnect HTML5
Browser resource hints that instruct the browser to fetch resources earlier than it would discover them — reducing latency for critical assets and future navigation.
3mo ago frontend intermediate
Premature Optimisation
Optimising code before measuring where the actual bottleneck is — trading readability for performance gains that often don't matter.
3mo ago quality beginner
Diagram: Processes vs Threads Processes vs Threads PHP 7.0+
Processes are independent execution units with separate memory; threads share memory within a process — threads are lighter but require synchronisation to be safe.
3mo ago concurrency 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: Progressive Web Apps (PWA) Progressive Web Apps (PWA) ES2015 🧠 2
Web applications that use service workers, a manifest, and HTTPS to provide app-like experiences — installable, offline-capable, and push notification-enabled.
3mo ago mobile intermediate
Python Generators & yield Python 2.2+
Functions that yield values one at a time — enabling lazy evaluation of infinite sequences without storing all values in memory.
3mo ago python intermediate
Diagram: Query Optimisation Query Optimisation PHP 5.0+
Analysing and rewriting database queries to reduce execution time, I/O, and resource usage.
3mo ago performance intermediate
Query Plan & EXPLAIN Analysis
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
✓ schema.org compliant