Closed
Bug 214525
Opened 22 years ago
Closed 22 years ago
Syncing/downloading newsgroups for offline reading is extremely slow.
Categories
(SeaMonkey :: MailNews: Backend, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: bugs_mozilla_2q1889, Assigned: Bienvenu)
Details
(Keywords: perf)
Attachments
(1 file, 1 obsolete file)
|
4.46 KB,
patch
|
sspitzer
:
review+
sspitzer
:
superreview+
sspitzer
:
approval1.5b+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624
It seems like the Mozilla newsreader gets the articles one by one. That's not
good for a 60.000-articles newsgroup. Others client take a few minutes to
download the whole group, and not hours like Mozilla. Would be great if that
could be fixed since that forces me to use another newsgroup client.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Expected Results:
Use the protocol efficiently.
| Assignee | ||
Comment 1•22 years ago
|
||
could you try a 1.5 build and let me know if it's faster? Do you hear the disk
chugging when you download newsgroups? thx.
Status: UNCONFIRMED → NEW
Ever confirmed: true
| Assignee | ||
Comment 2•22 years ago
|
||
I think 1.5 is faster, but it's still slow. There's a similar bug for IMAP - bug
214245 - my best guess is that it's slow because we're opening and closing the
offline store for every message, and we're commiting the db for every message.
There's a patch in the other bug that I hope speeds up IMAP, by reusing the
store. I'll try to come up with a similar patch for news.
| Assignee | ||
Comment 3•22 years ago
|
||
this patch makes it so we don't keep closing and re-opening the output stream,
which should speed things up a little. It also has a bit of cleanup.
BTW, there's no NNTP command that I know of that will download more than one
message at a time (unlike IMAP).
| Assignee | ||
Comment 4•22 years ago
|
||
last fix was checked in, r/sr=mscott. You'll have to download tomorrow's 1.5b
daily build to see if it helps.
Status: NEW → ASSIGNED
| Assignee | ||
Comment 5•22 years ago
|
||
we're still committing the db for every message, and updating the status line
for every message. Both of those will slow us down. I'll add a patch to fix
those problems.
| Assignee | ||
Comment 6•22 years ago
|
||
This makes it so we don't commit the db for every msg downloaded, and we only
update status msg every 3/4 of a second, and progress percent when it has
changed.
| Assignee | ||
Comment 7•22 years ago
|
||
Comment on attachment 129254 [details] [diff] [review]
don't keep closing and re-opening output stream
this was checked in.
Attachment #129254 -
Attachment is obsolete: true
Comment 8•22 years ago
|
||
Comment on attachment 129443 [details] [diff] [review]
don't commit every msg, and don't update progress/status every msg
r/sr/a=sspitzer for 1.5 beta
Attachment #129443 -
Flags: superreview+
Attachment #129443 -
Flags: review+
Attachment #129443 -
Flags: approval1.5b+
| Assignee | ||
Comment 9•22 years ago
|
||
fix checked in; please let me know if it's faster. I don't have a news feed fast
enough to tell...
Status: ASSIGNED → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Summary: Syncing/downloading newsgroups for offline eading is extremely slow. → Syncing/downloading newsgroups for offline reading is extremely slow.
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•