← All topics
MongoDB

MongoDB

3 articles on mongodb

{ }
esr-rule.svg
#mongodb Advanced

The ESR rule: how compound indexes really get used

Equality, Sort, Range — the three letters that decide whether your compound index is a thoroughbred or a paperweight. We dissect the planner's prefix-matching logic on a 40M doc collection.

AD Admin ·May 12, 2026 ·14 min
?
mongo-debug.svg
#mongodb Intermediate

Debugging MongoDB queries with explain('executionStats')

totalKeysExamined, totalDocsExamined, nReturned — the three numbers I look at first, and what their ratios tell me before I read a single index.

AD Admin ·May 04, 2026 ·9 min
n-gram
ngram-contains.svg
#mongodb Advanced

N-gram contains search in MongoDB without paying Atlas Search

How to fake LIKE '%foo%' on Mongo with trigrams, a pre-computed token array, and a clever multikey index. ~12ms p99 on 8M documents.

AD Admin ·Apr 28, 2026 ·18 min