Progress messages during load all comments #33
oldspammer
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If a YouTube video has a HUGE number of comments, my connection can handle them, but the screen update with progress messages should be A LOT LESS FREQUENT because my older computer is only 3.4 GHz 4 core and most of the time is NOT being spent loading the actual comments, but doing the progress messages saying that each single comment of 100 thousand or whatever it is, is currently being processed.
Change the screen update rate for these progress messages to be a lot more sane by doing the following processing...
Determine the total number of comments available. Divide that number by 500. Add one. Round that number down to the nearest, nice round figure.
Every modulo that round figure (or so) number of comments loaded and processed, then display a progress message.
This means that if the video has 190 thousand comments, a maximum number of 500 progress messages shall update the screen rather than the HUGE number of screen updates that would as of now have been laboriously displayed hindering the processing speed by quite some high factor.
Beta Was this translation helpful? Give feedback.
All reactions