Interlinked.

Six orders
of magnitude.

Plot every file-search tool on a log scale. The points cluster at two extremes and leave the middle completely empty. You're either indexed, or you're hopeless.

FILES (M)SCOREInterlinkedEverythingripgrepgrepfindClaude Code

TL;DR

The whole argument, in five lines.

01

A filename query returns in ~85 µs across 4.47M files (139 µs median), below the threshold of human perception, because it's a hashmap lookup, not a filesystem walk.

02

That's ~412,000× faster than VS Code search and ~480,000× faster than Windows Search (67 s), same drive, same query, same files.

03

Content search answers in 1 to 10 ms where ripgrep needs 93.8 s, a 58,625× gap (93.8 s → 16 ms), across the whole machine.

04

For an AI agent the effect compounds: a hunt costing Claude Code 6m57s across 71 tool calls becomes one 16 ms call (~7,200,000×), and context burned on searching falls from ~58% to ~0%.

05

It idles at ~44 MB with ~1 ms freshness. Everything is free forever, no card. Hosting starts at $5.99/mo.

Indexed

14µs

Interlinked Files on 4.47M files

Unindexed

62s

grep on the same drive

The ladder

Seven orders of magnitude, one cliff in the middle.

Each row is 10x slower than the one above. Only two rows contain file-search tools. The middle five are empty.

OrderWhat lives hereLatencyHow it feels
10⁻⁴ sInterlinked Files, L2 cache round trip~14 µsBelow human perception
10⁻³ sEverything (2006), DDR5 page miss~1 msBorderline felt
10⁻² sSSD seek, single HTTP round trip10 msJust barely perceptible
10⁻¹ sA fast web page, human reflex100 msNoticed as a pause
10⁰ sThe “is this broken?” threshold1 sUser doubts the tool
10¹ sUser walks away, starts multitasking10 sWorkflow broken
10² sgrep on 4.47M files, Claude Code hunt62 sSession abandoned

The first two rows and the last row are where file-search tools live. The five rows in between are uninhabited. No tool in production operates between 10 milliseconds and 10 seconds on a real drive. The cliff is absolute.

4,428,571×

The speed difference between the top and bottom of the cliff.
14 µs vs 62 seconds. Same drive. Same query. Same files.

Why the cliff exists

Indexing is binary. You either have one or you don't.

The middle is empty because the cost structure of file search has no continuous knob. There is no “half-indexed” mode. An index is a prebuilt lookup structure that trades space for time, and that trade only pays off if the lookup is near-constant. Any attempt to moderate it destroys the advantage.

Every architecture that tried to land in the middle (partial indexes, heuristic walkers, fading memory caches) ended up bimodal: fast on hits, slow on misses, nowhere near the middle on average. The middle is structurally impossible to occupy.

Option A: partial index

Bimodal

1 ms on hits, 60 s on misses. Not middle.

Option B: parallel walker

5 to 30 s

Faster shade of hopeless. Still bottom of cliff.

Option C: fading cache

Windows Search

Two code paths, bimodal, RAM hog. It's been tried.

Top of the cliff

Indexed engines. The entire category is two products.

Making a file-search index is hard. You have to build a data structure that answers any plausible query in under a millisecond, maintain it as the filesystem changes, survive reboots, and not eat all your user's RAM.

Everything survived because David Carpenter committed to MFT parsing twenty years ago and has maintained it every year since. Interlinked Files started from scratch in 2026 with twenty years of hardware and algorithms Carpenter didn't have, and added content search on top.

#1

Interlinked Files

14 µs filename, ~9 ms content. 2026.

#2

Everything

~1 ms filename only. No content search. 2006.

Bottom of the cliff

Everything else. The lineage runs back to 1973.

ToolMethodSpeed on 4.47M filesYearCeiling
findRecursive tree walkMinutes1973Bound by syscall count
grepLinear byte scan~62 s1974Bound by disk bandwidth
ls -R / dir /sRecursive directory listing~30 s1971Bound by directory entries
ripgrepParallel byte scan + gitignore~18 s2016Faster shade of the same ceiling
VS Code searchripgrep wrapper~20 s2015Same engine, UI overhead
Windows SearchPartial index, fading cache5 to 60 s2006Bimodal: fast on hits, slow on misses
Claude Code (agent)grep + find + heuristics>60 s2025Agent overhead on top of walker

Every entry on this list descends from find (1973). The approach is the same: open the top of the tree, descend recursively, compare. None of them can get faster without becoming an indexed engine, which is the one thing they're architecturally committed to not doing.

There is no middle ground. You either invest in an index or you live at the bottom.

The cliff is structural, not incremental.

The physics of the cliff

Why every “middle” attempt collapses to one side.

Imagine you're an engineer trying to build a file search tool that lands at 100 milliseconds per query on 4 million files. You think: I'll build something halfway between grep and an indexed engine.

You can't. An index either covers the query space or it doesn't. A partial index means every query either hits (1 ms) or falls through to the walker (60 seconds). Your average is bimodal, not middle. You're simultaneously on both sides of the cliff.

The tradeoff that doesn't exist

WITHOUT INDEX

62 s

Walk 4.47M files from root

0 bytes RAM · 0 s build time

WITH INDEX

14 µs

MFT scan + trigram index

~1.5 GB RAM · ~90 s build

The 1.5 GB and 90-second build are the cost of living at the top. No partial payment accepted.

The AI problem

Every AI agent is a walker.

Claude Code, Cursor, Copilot: they all wrap grep and find. They live at the bottom of the cliff.

AgentSearch methodOn 4.47M filesCliff side
Claude CodeGlob + grep, heuristic file discovery>60 s per searchBottom
Cursorripgrep + workspace indexing (partial)5 to 30 sBottom
GitHub CopilotTree-sitter + local ripgrep10 to 60 sBottom
Interlinked FilesMFT index + trigram content index14 µs / ~9 msTop

The lesson

Pick a side.

If you're building a product that needs fast file search, the lesson is brutal: you either invest in an index and live at the top of the cliff, or you ship a walker and live at the bottom. The middle is a dead zone.

Every tool that tried to land in the middle (Spotlight in its early days, Windows Search, Everything's open-source knockoffs) ended up on the slow side, because the middle is structurally impossible to occupy.

Interlinked Files picked the top. 14 microseconds on 4.47 million files. No middle ground. No compromise.

Common questions

Questions from the cliff edge.

How is an 85-microsecond search even possible?

Interlinked Files keeps a prebuilt, always-fresh index of every file on the machine (names and contents alike) so a query is a hashmap lookup rather than a walk down the directory tree. On a 4.47M-file drive a single filename lookup lands in ~85 µs (139 µs median), below the threshold of human perception.

How much faster is it than VS Code, ripgrep, or Windows Search?

On the same drive it's roughly 412,000× faster than VS Code search and ~480,000× faster than Windows Search (67 s). For file contents it answers in 1 to 10 ms where ripgrep needs 93.8 s, a 58,625× gap (93.8 s → 16 ms).

Why does this matter for AI agents like Claude Code?

Every coding agent is a walker: it wraps grep and find and lives at the bottom of the cliff. A file hunt that costs Claude Code 6m57s across 71 tool calls collapses to a single 16 ms call through Interlinked Files (~7,200,000× faster), and the share of the context window spent searching drops from ~58% to ~0%.

Does keeping a live index of the whole machine eat memory or go stale?

No. The index idles at ~44 MB and reflects filesystem changes with ~1 ms freshness, so a file you just saved is already findable. Measured on a Ryzen 9 9950X3D indexing 4.47M files.

What does it cost?

Everything (including the agent integration over MCP for Claude Code, Cursor, Codex and the rest) is free forever, no card. Hosting starts at $5.99/mo.

Test machine: Ryzen 9 9950X3D, 64 GB DDR5, 2 TB NVMe, Windows 11 Home. 4,470,000 files, 446,000 code files content-indexed. April 2026.