01
39,017 calls · 8,378 paths · 2.172s → 0.300s
The shared data boundary
Five loader-specific JSON/CSV caches cut one major loading seam, but profiling showed that the same merge-and-parse work was still repeated below them. One measured launch issued 39,017 JSON calls across 8,378 paths. Moving the repeated work into a shared memoized reader took the remaining merged-read seam from 2.172s to 0.300s, while typed-tree replay avoided reparsing stored JSON text.