Garjy / ice-cache-explorer

Automatically exported from code.google.com/p/ice-cache-explorer
GNU General Public License v3.0
0 stars 0 forks source link

Improve cache loading speed #4

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Loading .icecache files is quite slow with python. Using threads won't help 
much since python (through it Global Interpreter Lock mechanism) always limits 
threads to one core. Multiprocessing on the other hand, can be used to fork 
processes and allocate jobs to individual cores which can greatly speed up the 
loading of icecache files.

Original issue reported on code.google.com by mab...@gmail.com on 23 Jan 2011 at 8:50

GoogleCodeExporter commented 8 years ago

Original comment by mab...@gmail.com on 7 Apr 2011 at 1:03