Skip to main content
NEURONIX3D LIQUID v3.5 Hyperstructured IT Frontier Matrix
EN 中文
14ms
TECH CATEGORY

Distributed DB

Google Spanner TrueTime, Raft/Paxos state machine replication and global strict serializability

Distributed DB
Difficulty: Architect 16 min

Architecting a Flash-Sale System for 100M+ Concurrent Users: Static/Dynamic Split, Atomic Redis Lua Deduction and Queue-Based Load Shedding

A systematic review of the layered defenses behind a flash-sale system that absorbs hundreds of millions of instantaneous requests: CDN static offload, gateway rate limiting, atomic stock pre-deduction with Redis + Lua, asynchronous persistence through RocketMQ, and inventory bucketing to escape hot-row locking in the database.

#High Concurrency #Rate Limiter #Redis Lua
Distributed DB
Difficulty: Expert 14 min

PostgreSQL 17 and pgvector in Practice: Hundred-Million-Scale Vector Search and HNSW Index Tuning

As RAG architectures spread, the operational cost of running a dedicated vector database stays stubbornly high. This article covers using the pgvector extension in PostgreSQL 17, with HNSW (Hierarchical Navigable Small World) and IVFFlat indexes, to build an enterprise knowledge retrieval engine holding 10 million vectors on a single node with 10ms response times.

#HNSW #pgvector #PostgreSQL 17
Distributed DB
Difficulty: Architect 16 min

Distributed Transactions Head to Head: Raft State Machine Replication vs. Spanner TrueTime

A deep dive into the core algorithms modern distributed relational databases such as Google Spanner, TiDB and CockroachDB use for multi-region, multi-replica transactions, comparing what Raft lease reads, Multi-Paxos and the TrueTime API each pay in clock-wait cost to guarantee external consistency (linearizability).

#ACID #Distributed Database #Go