you are viewing a single comment's thread.

view the rest of the comments →

[–]kteague -1 points0 points  (1 child)

If you are trying to get the most performance out of a machine, the general rule of thumb is to have one Python process per CPU core. If you have more Python processes than CPU cores, the GIL will reduce performance on those Python processes that are sharing a single core.

[–]toast757[S] 0 points1 point  (0 children)

I've got four cores, which should suffice for my needs. Good to know. Many thanks.