0841e03a4c
From: "Nikita V. Youshchenko" I trued to use offlineimap and found that while being quite fast on small folders, it takes up to several minutes (of 100% busy CPU and almost no network traffic) to sync a folder with 2000+ messages. While looking into the code, I found why this happens. In folder/Base.py, in method BaseFolder.syncmessagesto_copy(), dest.getmessagelist() is called inside a loop, while being a loop invariant. Similar thing happens in BaseFolder.syncmessagesto_delete() for self.getmessagelist(). This causes quadratic complexity over folder size. Moving these calls out of loops make large folder sync fast (several seconds instead of several minutes for folder with 2000 messages on 700MHz P3). |
||
---|---|---|
.. | ||
folder | ||
repository | ||
ui | ||
__init__.py | ||
accounts.py | ||
CustomConfig.py | ||
imaplib.py | ||
imapserver.py | ||
imaputil.py | ||
init.py | ||
localeval.py | ||
mbnames.py | ||
syncmaster.py | ||
threadutil.py | ||
version.py |