-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delay between same-domain requests based on time when download was finished #179
Labels
Comments
aecio
added a commit
that referenced
this issue
Apr 22, 2019
same-domain requests based on the time when the download finished - Refactoring of FethcedResultHandler to simply notify the LinkStorage that the download finished and to delegate data processing to other handlers for the appropriate link type - Fixed unit and integration tests to consider the new scheduler workflow that requires notification when the download was finished Fixes #179.
aecio
added a commit
that referenced
this issue
Apr 22, 2019
- Modified PolitenessScheduler to compute the delay between same-domain requests based on the time when the download finished - Refactoring of FethcedResultHandler to simply notify the LinkStorage that the download finished and to delegate data processing to other handlers for the appropriate link type - Fixed unit and integration tests to consider the new scheduler workflow that requires notification when the download was finished Fixes #179.
aecio
added a commit
that referenced
this issue
Jan 18, 2020
- Modified PolitenessScheduler to compute the delay between same-domain requests based on the time when the download finished - Refactoring of FethcedResultHandler to simply notify the LinkStorage that the download finished and to delegate data processing to other handlers for the appropriate link type - Fixed unit and integration tests to consider the new scheduler workflow that requires notification when the download was finished Fixes #179.
aecio
added a commit
that referenced
this issue
Dec 1, 2020
- Modified PolitenessScheduler to compute the delay between same-domain requests based on the time when the download finished - Refactoring of FethcedResultHandler to simply notify the LinkStorage that the download finished and to delegate data processing to other handlers for the appropriate link type - Fixed unit and integration tests to consider the new scheduler workflow that requires notification when the download was finished Fixes #179.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, the delay between requests to the same domain (host) considers only the time when the URLs were scheduled to be downloaded, not the time when the download was finished. This can cause problems when downloading from slow servers or when large files that take minutes to download. ACHE should record the time when the last download from a host was finished, and compute the next visit based on this time.
The text was updated successfully, but these errors were encountered: