← 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
Real User Monitoring (RUM) ES2015
Collecting performance and error data from actual user browsers in production — capturing real-world conditions that synthetic lab testing cannot reproduce.
3mo ago observability 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
ReDoS (Regex Denial of Service)
A crafted input causes a regex with catastrophic backtracking to consume excessive CPU, making the application unresponsive.
CWE-1333 OWASP A5:2021
3mo ago security intermediate 7.5
Regex in Loop PHP 5.0+
Compiling and executing the same regular expression on every iteration of a loop — hoist the pattern outside.
3mo ago performance intermediate
Diagram: Regex Performance Regex Performance
Regex performance pitfalls — catastrophic backtracking (ReDoS), unnecessary captures, and poorly anchored patterns that scan more input than needed.
3mo ago regex advanced
Render-Blocking Resources
CSS and synchronous JavaScript in <head> that prevent the browser from rendering any content until they are downloaded and parsed — the primary cause of slow First Contentful Paint.
3mo ago frontend intermediate
Diagram: Searching Algorithms Searching Algorithms PHP 5.0+ 🧠 1
Linear search is O(n) and works on any array. Binary search is O(log n) but requires a sorted array. Hash lookup is O(1) and the right choice for most in-memory searches.
3mo ago algorithms 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
SPL Data Structures PHP 5.3+
PHP's Standard PHP Library provides efficient built-in data structures: SplStack, SplQueue, SplHeap, SplMinHeap, SplDoublyLinkedList, and more.
3mo ago php advanced
SQL Window Functions PHP 5.0+
SQL functions that perform calculations across a set of rows related to the current row without collapsing them into a single output row.
3mo ago database advanced
Tail Latency (p95, p99)
The latency experienced by the slowest requests — p99 is the response time below which 99% of requests fall, the most user-visible metric.
3mo ago performance advanced
Time Complexity (Big O)
A notation describing how an algorithm's execution time grows relative to input size — O(1), O(n), O(n log n), O(n²)…
3mo ago performance intermediate
UUID vs ULID vs Auto-Increment PHP 7.0+
Primary key strategies: auto-increment is simple and fast, UUID v4 is globally unique but random (poor index performance), UUID v7 and ULID are sortable globally unique IDs.
3mo ago database intermediate
Weak References (WeakReference, WeakMap) PHP 7.4+
References to objects that don't prevent garbage collection — useful for caches and observer registries that shouldn't extend object lifetimes.
3mo ago php advanced
Web Workers ES2015
Background threads in the browser that run JavaScript without blocking the main thread — essential for CPU-intensive tasks that would otherwise freeze the UI.
3mo ago javascript advanced
Diagram: Batch Processing Batch Processing PHP 5.5+ 🧠 1
Processing records in grouped chunks rather than one at a time, reducing per-record overhead and enabling efficient bulk database operations.
3mo ago performance intermediate
Lazy Loading HTML5
Defer loading or initialising a resource until it is actually needed, reducing startup cost and memory usage.
3mo ago performance beginner
Diagram: N+1 Query Problem N+1 Query Problem PHP 5.0+
Executing one query to get N records, then N more queries to fetch related data — one per record.
3mo ago performance intermediate
OPcache PHP 5.5+ 🧠 6
A PHP extension that caches precompiled bytecode in shared memory, eliminating repeated parsing and compilation overhead.
3mo ago php intermediate
✓ schema.org compliant