Cache Catch
64 subscribers
26 photos
18 links
The best caching reads, tools, and configs from around the web, curated weekly. Object cache, page cache, opcache -- the good stuff, none of the noise.
Download Telegram
Forwarded from AFF.TOP
This media is not supported in your browser
VIEW IN TELEGRAM
В Codex внедрят GPT-5.6 Ultra

OpenAI добавит в Codex эксклюзивную версию GPT-5.6 Sol Ultra — не ту, что выйдет в паблик, а отдельную, усиленную модель.

Два ключевых режима: расширенные рассуждения (модель думает дольше) и мульти-агентная работа с параллельными субагентами. Релиз ожидается 7–9 июля 2026.

Но есть один нюанс, который OpenAI пока не раскрывает 👀 Подробности — в …

➡️ Читайте на сайте: https://aff.top/blog/v-codex-vnedriat-gpt-5-6-ultra

🧠 Ещё больше инсайтов → в канале AFF.top
This week in caching: stopping the thundering herd
Three reads on what happens the instant a hot key expires.
probabilistic early expiration — the XFetch algorithm (Vattani et al.) refreshes a key slightly before TTL with rising probability, so one request rebuilds while others serve stale. Elegant, ~10 lines.
lock-based regeneration — Laravel's Cache::lock() and Redis SETNX patterns: first request rebuilds, rest wait or serve old.
request coalescing at the edge — Cloudflare's and Varnish's built-in collapsing means 10k simultaneous misses hit origin once.
Bookmark: the original XFetch paper — short, and the probability curve is genuinely clever.