Alessandro Miliucci

Distributed Locks with MongoDB and Node.js

In this talk I show how to create a distributed lock using MongoDB and Node.js as a client (it works with any language/framework). The lock is modeled after the Redis’s Redlock algorithm and it tries to keep the same three minimum guarantess.

Safety property: Mutual exclusion. At any given moment, only one client can hold a lock.

Liveness property A: Deadlock free. Eventually it is always possible to acquire a lock, even if the client that locked a resource crashes or gets partitioned.

Liveness property B: Fault tolerance. As long as the majority of Redis nodes are up, clients are able to acquire and release locks.

This talk has been given, for the first time, in March 2025 at Rome MongoDB User Group.