calvinaquino / LNReader-Android

Light novel reader for android test project collab
Apache License 2.0
120 stars 36 forks source link

Add multithreaded download #282

Closed takase1121 closed 1 year ago

takase1121 commented 5 years ago

the download is usually slow as it downloads multiple files. A multithreaded download (download multiple files simultaneously) might help? Please add a option for the number of download threads too if this was added.

Nandaka commented 5 years ago

This might be quite tricky as android only allow limited pool of task based on the cpu count (https://stackoverflow.com/a/40823734) Also, this might cause a problem with concurrent update to DB, maybe paralel download on the novel level, but not down to chapter level.

takase1121 commented 5 years ago

I see. Thanks for reviewing it anyways!