-
Notifications
You must be signed in to change notification settings - Fork 15
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
Download performance #9
Comments
|
um speaking of which my download performance is very slow |
um steam is also now being slow using download_depot don't know why tho |
Downloading is IO intensive task, which is fine on single thread for downloading. The single thread bottleneck mentioned here is due to the decryption of the chunks, which a CPU heavy task. To improve performance, the decryption needs to be parallelized across the available cores. Regardless, the speed will never be that low. There isn't enough information to determine why you are experiencing slow download. Could be slow storage, network connectivity, bad cache servers, etc |
nope its not slow storage, or my network, maybe lancache is being slower lately when getting chunks upstream |
also if i download the chunks or whatever using aria2 is seems to work fine like installing a game normally |
Is it not ready yet? I have only half or less of my normal speed |
it seems the dev has gone missing or something |
Looks like the single threaded nature of the
depot download
implementation can limit the download speed. Need to look into multi-thread or multi-process solution in order to saturate fat pipes.The text was updated successfully, but these errors were encountered: