You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we perform the following data flow upon a ChunkedBloscFileDataManager cache miss:
Ask the next layer for data
Save the retrieved data to disk
Return a copy of that retrieved data
In order to improve performance and save roundtrip time on that initial request, we should perform step 2 (saving the data to disk) in parallel with returning it to the user. Or, rather, spawn a routine to save data to disk in parallel (and allow it to finish even once the HTTP request is closed).
The text was updated successfully, but these errors were encountered:
Right now we perform the following data flow upon a
ChunkedBloscFileDataManager
cache miss:In order to improve performance and save roundtrip time on that initial request, we should perform step 2 (saving the data to disk) in parallel with returning it to the user. Or, rather, spawn a routine to save data to disk in parallel (and allow it to finish even once the HTTP request is closed).
The text was updated successfully, but these errors were encountered: