Interlinked.

Benchmarks · File Search · Apr 9 2026

412,000x.

VS Code is the most popular editor on Earth. Its built-in file finder, Ctrl+P, is one of the most-used features in the entire ecosystem. On a real C: drive it takes about thirty-five seconds to find a file. Interlinked finds the same file in eighty-five microseconds.

Interlinked85 µsVS Code35 secWin Search67.1 secgrep70.7 secClaude Code3 min 13 secMILLISECONDS TO FIRST RESULT

Interlinked Files

85us

One file among 4.47 million

VS Code Ctrl+P

35s

Same machine, same drive, same query

The test

One drive, five tools, one query.

Real machine, real C: drive. Years of repos, downloaded media, dependency caches, build outputs, screenshots. 4.47 million files. Query: the literal string iron man. Type it, start a stopwatch, stop the moment the first match appears. Median of five runs for indexed tools.

Machine

Ryzen 9 9950X3D

Memory

64 GB DDR5

Drive

2 TB NVMe

Files

4,470,000

Code Files

446,000

EngineTimeRatioNotes
Interlinked Files85 us1xFound instantly across 4.47M files
VS Code Ctrl+P~35 s412,000xRecursive directory walk
Windows Search67.1 s480,000xIndexer had to catch up
grep / CLI tools70.7 s832,000xFull-disk scan
Claude Code (Opus 4.6)193.5 s2,276,000xChain of tool calls and retries

The headline number (412,000x) is the gap between Interlinked and the file finder used by 70%+ of professional developers, on the same machine, against the same query.

The structural reason

VS Code walks the filesystem on every search.

VS Code's Ctrl+P is implemented in fileSearch.ts and fuzzyScorer.ts. When you type a query, the file finder walks the workspace using Node.js fs.readdir, recursively, and ranks results with fuzzy scoring. No persistent index. Every keystroke restarts the walk.

This works on a workspace of 1-10K files. It does not work on 4.47 million files. Nothing about this design will ever get faster.

VS Code approach

Walk 4.47M files

fs.readdir recursive on every query. No index. No cache. No shortcut. Time: O(n) where n = every file on the drive.

Interlinked approach

Query the index

Live persistent index. The walk happened once, ahead of time. Queries hit the index, not the filesystem. Time: O(1) amortized.

2us
best case. two microseconds.
Light travels six hundred meters in two microseconds.

Full benchmark

Eighteen queries side by side.

Same machine, same drive. Median of five runs for indexed tools. VS Code is omitted because every query takes ~35s regardless, dominated by directory walk time.

Median

139us

Across 20 queries

Best

2us

test6767

Worst

806us

Still sub-millisecond

QueryInterlinkedWindows SearchCLI Tools
package.json497 us63.0 s69.5 s
tsconfig.json332 us65.8 s70.9 s
.gitignore212 us128.2 s70.6 s
globals.css117 us65.9 s70.6 s
Dockerfile206 us65.0 s70.9 s
analytics346 us67.7 s70.3 s
middleware155 us65.4 s70.5 s
controller806 us68.2 s70.0 s
schema253 us72.7 s70.6 s
readme301 us68.1 s71.4 s
iron man85 us67.1 s70.7 s
chrome143 us67.9 s69.8 s
nvidia188 us67.0 s69.9 s
discord245 us66.3 s69.9 s
python227 us67.3 s70.2 s
test67672 us67.6 s69.2 s
log86 us66.9 s72.4 s

Highlighted row is the headline query. Worst case across all queries is 806 us, still sub-millisecond, while every disk-walking tool on the same drive needs tens of seconds.

Interlinked's worst case beats every other tool's best case.

806 us vs 35 seconds. On the same drive.

Summary

Median, best, worst across all five tools.

InterlinkedVS CodeWindows SearchCLI ToolsClaude Code
Median139 us~35 s67 s71 s193.5 s
Best2 usn/an/an/an/a
Worst806 usn/an/an/an/a
vs Interlinkedbaseline412,000x480,000x832,000x2,276,000x

What this means

Inside a workspace, Ctrl+P is fine.

If you live inside a VS Code workspace and never search outside it, Ctrl+P does its job. It was built for the workspace boundary and it works within it.

The moment you need to search across all of your code (across every project in your ~/dev folder, or across the whole machine), VS Code is the wrong tool, and there is no version of VS Code that will fix it without a redesign of the file finder.

#1 Interlinked

139 us

Median, 4.47M files

#2 VS Code Ctrl+P

~35 s

412,000x slower

#3 Windows Search

67 s

480,000x slower

The gap Interlinked fills

Not a plugin. An indexed file engine.

Same query, same machine, same drive. Four hundred and twelve thousand times faster. No agent, no model, no plugin: just an indexed file engine doing what filesystems should have done in the first place.

The implications go beyond developer tooling. When your AI agent can find any file on the machine in microseconds instead of minutes, context retrieval stops being the bottleneck. The model ceiling is already reachable. The next frontier is what's wrapped around the model, and that starts with knowing where everything is, instantly.

Every tool in this benchmark that took more than a second was walking the disk. Interlinked never walks the disk. That's not an optimization. It's a different architecture.

Test machine: Ryzen 9 9950X3D · 64 GB DDR5 · 2 TB NVMe · Windows 11 Home · 4,470,000 files · 446,000 code files. All numbers measured April 2026.