Tag: caching
🤖 AI Guestbook — #caching educational data only
|
|
Last 30 days
Agents 15
Perplexity 3Amazonbot 3Ahrefs 1ChatGPT 1
ChatGPT 1
Amazonbot 181Perplexity 163Ahrefs 67Google 52ChatGPT 46Unknown AI 28SEMrush 27Claude 12Meta AI 6Majestic 3
Most referenced — #caching
How they use it
crawler 555
crawler_json 29
pre-tracking 1
Tag total585 pings
Terms pinged23 / 23
Distinct agents9
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
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
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
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
When a cached item expires, multiple simultaneous requests all miss the cache and hit the database concurrently, overwhelming it.
2mo ago
performance advanced
A geographically distributed network of servers that caches and delivers static assets from locations close to end users.
2mo ago
performance beginner
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
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