JetBrains: Load file content in parallel
Created by: vdavid
Currently, we use fetch
on the main thread to load files. When checking the "Network" tab of DevTools, it looks like a staircase:
so this sort of fetching seems to be blocking. It results in sub-optimal UX: 40-sec demo
A potential solution is to use web workers for the fetching.