← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #caching educational data only
| |
Last 30 days
4 pings — 2026-05-26 T 5 pings — 2026-05-27 W 22 pings — 2026-05-28 T 2 pings — 2026-05-29 F 11 pings — 2026-05-30 S 11 pings — 2026-05-31 S 7 pings — 2026-06-01 M 1 ping — 2026-06-02 T 8 pings — 2026-06-03 W 24 pings — 2026-06-04 T 45 pings — 2026-06-05 F 31 pings — 2026-06-06 S 63 pings — 2026-06-07 S 35 pings — 2026-06-08 M 15 pings — 2026-06-09 T 15 pings — 2026-06-10 W 10 pings — 2026-06-11 T 10 pings — 2026-06-12 F 3 pings — 2026-06-13 S 1 ping — 2026-06-14 S 2 pings — 2026-06-15 M 9 pings — 2026-06-16 T 7 pings — 2026-06-17 W 11 pings — 2026-06-18 T 7 pings — 2026-06-19 F 5 pings — 2026-06-20 S 16 pings — 2026-06-21 S 12 pings — 2026-06-22 M 11 pings — Yesterday T 16 pings — Today W
Claude 16
PetalBot 5ChatGPT 3Bing 2Perplexity 1
Amazonbot 215Scrapy 192Perplexity 174ChatGPT 119Ahrefs 116Google 96SEMrush 86Claude 50Bing 37Unknown AI 28Meta AI 27PetalBot 22Majestic 6Sogou 5Qwen 5
crawler 1.1k crawler_json 81 pre-tracking 1
Tag total1.2k pings Terms pinged23 / 23 Distinct agents14
Level All Beginner Intermediate Advanced Tag: caching
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
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
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
App Shell Pattern 🧠 2
A PWA architecture that separates the minimal UI skeleton (shell) from dynamic content — the shell is cached by the service worker and loads instantly, while content is fetched fresh on each visit.
3mo ago Mobile 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.
3mo ago Performance intermediate
Consistent Hashing
A hashing technique used in distributed systems where adding or removing a node rebalances only a fraction of keys rather than remapping everything — essential for distributed caches, load balancers, and sharded databases.
3mo ago Architecture advanced
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.
3mo ago Performance beginner
Service Worker 🧠 7
A JavaScript file that runs in the background separate from the web page, intercepting network requests to enable offline support, background sync, and push notification delivery.
3mo ago Mobile 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.
3mo ago Performance intermediate
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.
3mo ago Performance intermediate
Diagram: Asset Versioning & Browser Cache Strategy Asset Versioning & Browser Cache Strategy 🧠 1
Serving static assets with immutable long-lived cache headers plus content-hash filenames — maximising cache hits while guaranteeing instant cache-busting on change.
3mo ago Performance beginner
Diagram: Bloom Filter Bloom Filter PHP 7.0+
A probabilistic data structure that tests set membership in O(1) time and O(1) space, with a tunable false-positive rate and zero false negatives.
3mo ago Data Structures advanced
Cache Poisoning PHP 5.0+
An attacker manipulates a cached response so that subsequent users receive malicious content served from the cache.
CWE-346 OWASP A4:2021
3mo ago Security advanced 8.1
Diagram: Cache Stampede / Thundering Herd Cache Stampede / Thundering Herd PHP 5.0+
When a cached item expires, multiple simultaneous requests all miss the cache and hit the database concurrently, overwhelming it.
3mo ago Performance advanced
Diagram: CDN (Content Delivery Network) CDN (Content Delivery Network) 🧠 2
A geographically distributed network of servers that caches and delivers static assets from locations close to end users.
3mo ago Performance beginner
Diagram: CDN Edge Caching CDN Edge Caching PHP 5.0+ 🧠 1
Content Delivery Networks cache responses at edge nodes close to users — reducing latency and origin load, controlled via Cache-Control headers.
3mo ago Performance intermediate
HTTP Caching (ETags, Cache-Control)
Standard HTTP headers that instruct browsers and intermediary caches on how long to cache responses and when to revalidate.
3mo ago Performance intermediate
Diagram: LRU Cache LRU Cache
A fixed-size cache that evicts the Least Recently Used entry when full, implemented with a hash map and doubly linked list for O(1) get and put.
3mo ago Data Structures 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
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
PSR-6: Caching Interface PHP 5.5+
Standard CacheItemPoolInterface and CacheItemInterface for framework-agnostic cache integration — decouple code from specific cache backends.
3mo ago Style intermediate
✓ schema.org compliant