Have you tried the released 0.2.1 version? That has a contributed patch that significantly speeds up transfers.
I would think that a P-II class machine wouldn’t have a problem speed-wise.
Also, make sure you have compression turned off — that may (depending) actually make the transfer speed slower, rather than faster as you might imagine.
Also, make sure you have compression turned off — that may (depending) actually make the transfer speed slower, rather than faster as you might imagine.
I’ve been thinking about this today, and another reason it tends to browse slowly is that the browse data is kept in a linked list, and the entire database is enumerated and checked against the list.
So it’s a n! algorithm to return a browse list, which is complicated by the fact that it’s doing strcasecmp along the whole list.
I could make it log(n) by using a red/black tree to store the browse list.