← CodeClarityLab Home
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #caching educational data only
| |
Last 30 days
3 pings — 2026-04-08 W 0 pings — 2026-04-09 T 3 pings — 2026-04-10 F 6 pings — 2026-04-11 S 3 pings — 2026-04-12 S 10 pings — 2026-04-13 M 1 ping — 2026-04-14 T 1 ping — 2026-04-15 W 3 pings — 2026-04-16 T 13 pings — 2026-04-17 F 8 pings — 2026-04-18 S 16 pings — 2026-04-19 S 9 pings — 2026-04-20 M 4 pings — 2026-04-21 T 5 pings — 2026-04-22 W 7 pings — 2026-04-23 T 19 pings — 2026-04-24 F 18 pings — 2026-04-25 S 3 pings — 2026-04-26 S 0 pings — 2026-04-27 M 6 pings — 2026-04-28 T 11 pings — 2026-04-29 W 10 pings — 2026-04-30 T 20 pings — 2026-05-01 F 18 pings — 2026-05-02 S 19 pings — 2026-05-03 S 3 pings — 2026-05-04 M 4 pings — 2026-05-05 T 5 pings — Yesterday W 15 pings — Today T
Perplexity 3Amazonbot 3Ahrefs 1ChatGPT 1
ChatGPT 1
Amazonbot 181Perplexity 163Ahrefs 67Google 52ChatGPT 46Unknown AI 28SEMrush 27Claude 12Meta AI 6Majestic 3
crawler 555 crawler_json 29 pre-tracking 1
Tag total585 pings Terms pinged23 / 23 Distinct agents9
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.
1w 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.
1mo ago database intermediate
App Shell Pattern
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.
2mo 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.
2mo 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.
2mo 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.
2mo ago performance beginner
Service Worker
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.
2mo 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.
2mo 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.
2mo ago performance intermediate
Diagram: Asset Versioning & Browser Cache Strategy Asset Versioning & Browser Cache Strategy
Serving static assets with immutable long-lived cache headers plus content-hash filenames — maximising cache hits while guaranteeing instant cache-busting on change.
2mo 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.
2mo 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
2mo 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.
2mo ago performance advanced
Diagram: CDN (Content Delivery Network) CDN (Content Delivery Network)
A geographically distributed network of servers that caches and delivers static assets from locations close to end users.
2mo ago performance beginner
Diagram: CDN Edge Caching CDN Edge Caching PHP 5.0+
Content Delivery Networks cache responses at edge nodes close to users — reducing latency and origin load, controlled via Cache-Control headers.
2mo 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.
2mo 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.
2mo 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.
2mo ago performance intermediate
Opcode Caching PHP 5.5+
Storing precompiled PHP bytecode in memory to skip the parse-and-compile phase on subsequent requests.
2mo 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.
2mo ago style intermediate
✓ schema.org compliant