---
answer: direct
beat: system-design
source: 1 article · updated: August 11, 2026
---

When should you NOT use an inverted index?

Inverted indexes excel at full-text search but are overkill for range queries ('age > 30') or numeric joins. They also require write-time work—every document insert updates multiple posting lists. For write-heavy systems (event streams, time series) without full-text search needs, column indexes or B-trees are simpler.

Answered in

The Inverted Index

A sorted dictionary mapping terms to document IDs. Transform search from O(corpus size) to O(1) lookup, enabling full-text search at scale.

Crashtech Editorial August 11, 2026 System Design

Read the full analysis

Other questions this article answers

More system design questions

Every answer on Crashtech is written by the editor of the article it comes from — never auto-summarised. Browse all answers or the System Design beat.