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
Large DICOM datasets consisting of more than ~1350 DCM files overwhelm Chrome's AJAX request quota. Any XHR requests beyond these are rejected by the browser leading to the viewer aborting loading and initializing (Firefox does not have this problem and was able to handle the 2717 files I had without problems)
A code review showed that during initialization, all AJAX requests for each .dcm file are generated simultaneously. When I "hacked" a fix into the code that only initially creates 20 XHR objects at once and then waits for requests to complete before creating a new one from the queue of files to load, Chrome was able to load the large dataset.
The text was updated successfully, but these errors were encountered:
NeoTiger
changed the title
Large DICOM datasets overwhelms Chrome request quota
Large DICOM datasets overwhelm Chrome's request quota
Jun 12, 2023
Large DICOM datasets consisting of more than ~1350 DCM files overwhelm Chrome's AJAX request quota. Any XHR requests beyond these are rejected by the browser leading to the viewer aborting loading and initializing (Firefox does not have this problem and was able to handle the 2717 files I had without problems)
A code review showed that during initialization, all AJAX requests for each .dcm file are generated simultaneously. When I "hacked" a fix into the code that only initially creates 20 XHR objects at once and then waits for requests to complete before creating a new one from the queue of files to load, Chrome was able to load the large dataset.
The text was updated successfully, but these errors were encountered: