Below you will find pages that utilize the taxonomy term “Concurrency”
Log
Distributed Lock vs Row Lock vs Transaction
These three mechanisms solve different problems at different layers: distributed locks protect business execution, row locks protect data mutation, and transactions define lock scope and atomicity.
read more
Log
How Node.js Achieves High Concurrency on a Single CPU Core
Node.js achieves high concurrency not by multi-threading, but through its event-driven, non-blocking I/O model. It efficiently overlaps I/O waiting time across requests, allowing a single thread to handle thousands of connections.
read more