Tag: #cache
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 6 posts
Redis Production Operations Complete Guide 2025: Cluster, Persistence, Memory, Redis 7+
Everything about Redis in production! 8 data structures, persistence (RDB vs AOF), Sentinel vs Cluster, memory management (maxmemory-policy), performance tuning, Redis 7+ features, Valkey/KeyDB comparison, monitoring and
2026-04-15 · 8 min read #redis#cache#production#cluster#persistenceThe Complete Guide to Probabilistic Data Structures 2025: Bloom Filter, HyperLogLog, Count-Min Sketch, and Real-World Usage
Everything about probabilistic data structures! Bloom Filter, Counting Bloom Filter, HyperLogLog, Count-Min Sketch, MinHash, Cuckoo Filter — the memory-accuracy tradeoff, and real-world usage in RocksDB/Redis/Cassandra/S
2026-04-15 · 14 min read #bloom-filter#hyperloglog#count-min-sketch#probabilistic#data-structuresModern Computer Architecture — CPU Pipelines, Out-of-Order, Caches, Branch Prediction, Meltdown, Apple Silicon, ARM, RISC-V, SIMD, GPU Deep Dive (2025)
Why arrays beat linked lists, why a branch can be 10x slower, how M1 beat Intel. CPU pipelines, Out-of-Order, L1 to L3 caches, branch prediction, Meltdown/Spectre, Apple Silicon, ARM/x86/RISC-V, SIMD, GPU SM/Warp, HBM/CX
2026-04-15 · 15 min read #computer-architecture#cpu#cache#branch-prediction#apple-siliconComplete Guide to CDN & Edge Caching Strategies 2025: Cache Invalidation, ETag, Stale-While-Revalidate
Everything about CDNs and caching. HTTP cache headers (Cache-Control/ETag/Vary), how CDNs work, edge caching, the hard problem of cache invalidation (one of the two hard problems), Stale-While-Revalidate, and a compariso
2026-04-15 · 14 min read #cdn#cache#edge-computing#http-cache#cache-invalidationRedis Internals & Distributed Cache — Single Thread, Data Structures, Cluster, Sentinel, RDB/AOF, Redlock, Valkey, Dragonfly Deep Dive (2025)
Why does single-threaded Redis hit 1M QPS? From String to Stream across 9 data structures, Cluster hash slots, Sentinel HA, RDB/AOF tradeoffs, Cache-Aside and Thundering Herd, the Redlock debate, the 2024 license drama a
2026-04-15 · 15 min read #redis#valkey#cache#distributed-systems#infraComputer Architecture Complete Guide: From ISA to GPU Parallel Architecture
A comprehensive guide to computer architecture covering ISA, datapath, pipelining, cache memory, virtual memory, RISC-V, and GPU parallel architecture with code examples.
2026-03-17 · 23 min read #computer-architecture#cpu#gpu#pipeline#cache