regarding threading
Neil Hodgson
nhodgson at bigpond.net.au
Tue Oct 14 17:23:36 EDT 2003
More information about the Python-list mailing list
Tue Oct 14 17:23:36 EDT 2003
- Previous message (by thread): regarding threading
- Next message (by thread): regarding threading
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Andrew Dalke: > If you don't have a multiple processor machine, > using threads won't make a difference. How many > processors do you have on a machine? There may be some advantage in overlapping computation with I/O although it would depend on the relative costs of the search and I/O. With a 3.5 Gigabyte file the problem may be I/O bound. In which case splitting the file onto multiple disks and using 1 thread for each split may increase performance. Neil
- Previous message (by thread): regarding threading
- Next message (by thread): regarding threading
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list