|
|
|
|
|
by iooi
2898 days ago
|
|
As far as Python goes, yes. Multicore implies multiple processes, which means that each process will have it's own Python interpreter, each with it's own GIL. If you were to use multithreading instead, you would generally have a problem if you were doing non-I/O work. |
|
It seems that now we are both on the same page. Single process & many threads are problematic for GIL languages and that's why I gave up using Ruby for scrapers. GIL languages can work very well for the URL downloading part though.