Interlinked.

Explainers · measured July 2026

What 85 microseconds actually feels like.

You just blinked. In that one blink (about a tenth of a second), Interlinked Files could have found a single file, by name, out of 4.47 million on the disk, and done it more than a thousand times over. 85 microseconds is a number that's easy to type and impossible to feel. This is that number, translated out of the abstract and into things a body can picture.

The short version

  • 01A microsecond is one-millionth of a second. 85 of them is roughly a thousandth of a single blink.
  • 0285 µs is how long one file lookup takes on the test machine, one name found among 4.47 million files. Best case: 2 µs. Median across 20 queries: 139 µs.
  • 03In the time you blink once (~100 ms), the engine could run that search about 1,176 times, back to back.
  • 04The tools you already use are slower by a factor most people read as a typo: VS Code takes 35 seconds for the same file, Windows Search 67 seconds. That's 412,000× and ~480,000× slower.
  • 05Fast enough that, for an AI agent, finding a file stops being something it waits on. It becomes free, like reading from memory.

First, the unit

A microsecond is a millionth of a second. Eighty-five of them is one file, found.

A microsecond is one-millionth of a second: the sliver of time in which light, the fastest thing there is, travels about 300 metres. 85 microseconds is how long Interlinked Files takes to find one specific file, by name, among 4.47 million on the benchmark machine (a Ryzen 9 9950X3D, 64 GB DDR5, NVMe, Windows 11). The best case is 2 microseconds; the median across 20 different queries is 139.

Human perception rounds all of that to zero. The quickest blink of an eye lasts about 100 milliseconds. That is 100,000 microseconds. Line them up and one blink is long enough for roughly 1,176 of these lookups, one after another, before your eyelid finishes rising. You would never see it happen. It is three orders of magnitude below the threshold where a human can tell that time has passed at all.

For the deeper, nerdier version of this (cache lines, DRAM, photons), see the physics of microseconds. This piece stays with the things you can feel.

The one picture

Where 85 microseconds sits. Every step is ten times longer than the last.

Time laid out on a scale where each mark is ten times the one before it, from a memory chip answering the processor, out to Windows Search taking most of a minute. The file lookup is the one lit up. Notice how far it is from anything a person can notice, and how far the everyday tools are from it.

← FASTERSLOWER →MEMORY ACCESSDDR5 · 3 nsLIGHT TRAVELS A MILE5.4 µsA KEYSTROKE LANDS~1 msA BLINK~100 msWINDOWS SEARCH67 s medianONE FILE LOOKUP85 µslight crosses a city · 25.5 km

Logarithmic scale: each division is 10× longer than the one before. Durations shown: DDR5 memory ~3 ns, light-a-mile 5.4 µs, one lookup 85 µs, a keystroke ~1 ms, a blink ~100 ms, Windows Search 67 s (median of 20 queries on the same drive).

Five ways to feel it

How many lookups fit inside a moment. The blink is the one to remember.

The momentIt lasts85 µs lookups that fit
A single keystroke landing~1 ms~12 lookups
One frame on a 60 fps screen~16.7 ms~196 lookups
A blink of an eye~100 ms~1,176 lookups
One full second1 s~11,765 lookups
VS Code opening the same file35 s~412,000 lookups

Each figure is the plain division of that moment by a single 85 µs lookup. The VS Code row is Ctrl+P for the same file on the same drive. The canonical head-to-head is 412,000× (35 s vs 85 µs). Method: Ryzen 9 9950X3D · 64 GB DDR5 · NVMe · Windows 11 · 4.47M files; single-file lookup 85 µs, best 2 µs, median-of-20 139 µs.

The harder trick

It isn't just fast. It's fast at finding the needle.

Speed alone is easy if you already know where to look. The 85 microseconds buys something harder: the right file out of 4.47 million, picked from a fragment of its name, with the answer back before you could register that you had asked. If you inspected one file per second by hand (one, two, three), it would take you about 51 days, without sleeping, to walk past them all a single time.

The engine doesn't walk. It already knows where everything is, and it stays current as files change: a save is searchable in about a millisecond, worst case under 30, while the whole thing idles at around 44 MB of memory and the index on disk stays under 1% of the drive. The list it searches is never stale and never far away. That is the layer the rest of this stands on, the backbone of the LLM economy.

Why a small number is a big deal

When search costs nothing, an agent stops rationing it.

For a person, 85 µs and 100 ms are both just “instant.” For an AI agent running hundreds of file lookups to plan one change, the gap between them is the whole session. On the same machine we watched Claude Code spend 6 minutes 57 seconds and 71 tool calls hunting for context the slow way. With the index in place it was 16 milliseconds and a single call, and the roughly 58% of its tokens that had been going to file-hunting fell to almost none.

6m 57s → 16ms
time the agent spent finding context: the slow way, then with the index
71 → 1
tool calls burned hunting for one file
~58% → ~0%
of session tokens spent looking instead of thinking

Search stops being a budget the agent has to spend carefully and becomes a fact of the environment, like RAM. Every other part of the loop gets to assume it is free. That is where all your tokens actually go, and it is why one small number changes the whole shape of a session.

Questions people ask

Microseconds, in plain terms.

What is a microsecond?

One-millionth of a second. 85 of them is about a thousandth of a single blink; a million of them is one second. It is far below the roughly 100-millisecond threshold at which a human can perceive that any time has passed.

Is 85 microseconds the real, measured number?

Yes. It is a single-file lookup on the benchmark machine: a Ryzen 9 9950X3D, 64 GB DDR5, NVMe, Windows 11, with 4.47 million files indexed. The best case is 2 µs; the median across 20 different queries is 139 µs. Nothing is estimated.

How is that possible when Windows Search takes over a minute?

Windows Search (and tools like VS Code and grep) walk the disk when you ask, every time. Interlinked keeps a live, always-current index of every file, so the answer is looked up, not hunted for. The same 20-query set that takes Windows Search 67 seconds returns in 139 µs, about 480,000× sooner.

Does it stay this fast as files change?

Yes. A saved change is searchable in about a millisecond, worst case under 30. The index stays under 1% of the drive and the background engine idles at around 44 MB of memory, so speed does not decay as the machine fills up.

Why would an AI agent care about microseconds?

Because it runs the search hundreds of times per task. At 85 µs each, those lookups vanish into the noise; at 100 ms each they become the slowest thing the agent does. The difference is a whole session of wasted time and tokens.

Try it

Feel it on your own machine.

One signed installer indexes your drive and wires up 19 AI clients (Claude Code, Cursor, Copilot, Windsurf, Zed and the rest) over MCP, with no config to edit. Filename search works immediately; content search fills in behind it. Then type a query and watch the answer arrive before you finish reading the box.

Everything local is free forever, on all your devices, no card. Hosting starts at $5.99/mo. Download for Windows.

Measured July 2026 · Ryzen 9 9950X3D · 4.47M files · Windows 11← All research