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
The current way thumbnails are generated for archives, if I remember correctly, is that every file is decompressed at the same time (up to the thread limit set by the imagelist) and the thumbnail is created.
This causes an extreme IO bottleneck and most likely hinders performance.
The images should be extracted on one thread and there should be another thread waiting on a queue to create thumbnails for newly extracted images.
The text was updated successfully, but these errors were encountered:
The current way thumbnails are generated for archives, if I remember correctly, is that every file is decompressed at the same time (up to the thread limit set by the imagelist) and the thumbnail is created.
This causes an extreme IO bottleneck and most likely hinders performance.
The images should be extracted on one thread and there should be another thread waiting on a queue to create thumbnails for newly extracted images.
The text was updated successfully, but these errors were encountered: