#2406 closed patch (Fixed)
Speed up adding multiple torrents
Reported by: | Bro | Owned by: | Bro |
---|---|---|---|
Priority: | minor | Milestone: | 2.0.0 |
Component: | Core | Version: | develop |
Keywords: | Cc: |
Description
Adding large amounts of torrents is painfully slow because the torrents.state and torrents.fastresume files are written to disk after each torrent is added.
This patch adds a new function to core which takes multiple torrents so that the state and fastresume files are only written to disk once. GTKUI add dialog uses this function.
https://github.com/bendikro/deluge/tree/develop-add-torrents
Change History (6)
comment:2 by , 10 years ago
Milestone: | 1.4.0 → 2.0.0 |
---|
comment:4 by , 10 years ago
Owner: | set to |
---|---|
Status: | new → assigned |
comment:5 by , 10 years ago
Resolution: | → Fixed |
---|---|
Status: | assigned → closed |
Added to develop: [2aaae7c6a1bec]
Note:
See TracTickets
for help on using tickets.
Added fix to avoid saving resume data unnecessarily. Current code seems to do one write of resume data to disk per torrent loaded on startup.