The save worked. The screen showed the old name anyway.
The residents-not-students RCT, and a bug that heals in three seconds.
- The track
- Writes code
- The rep
- About thirty seconds
- Published
- September 2, 2026
The Exhibit
Issue 03's evidence was on students. Here is the same idea, tested on professionals: a randomized controlled trial on practicing pediatrics and ER residents. Topics they were tested-and-spaced on beat topics they restudied, measured on a delayed exam six months out. The study.
Working experts, real clinical load, half-year delay. Retrieval is not a study-skill you grow out of; it is how expert knowledge stays loaded. The corollary for you: the system you understood deeply last year is decaying right now if you have not been back in it.
The study
Comprehension Debt
Comprehension debt: the gap between what gets shipped and what the team can still reason about.
The model in your head is not durable storage, it is a cache, and the eviction policy is "did you use it recently." That is uncomfortably literal. The Rep is a bug whose entire nature is timing, readable only if your model of the data layer is still warm.
The idea
The Rep
Thirty seconds:
A user saves their profile, the write succeeds, the next page renders the old name, and a refresh a few seconds later shows the new one. Caching bug?
The answer
Probably not. The self-healing-after-a-few-seconds signature points at replication lag with read-after-write. The write went to the primary; the immediate read was served by a read replica that had not yet applied the change; once replication caught up, the value appeared correct. Clearing caches will not fix it and will not reproduce reliably, because the variable is time, not stale cache entries. Fixes: route reads that must reflect a just-committed write to the primary (read-your-writes), or pin a user to the primary for a short window after they write, or wait for the replica to reach the write's log position before reading. The "fixes itself in seconds" tell is the lag closing on its own.
About thirty seconds
