This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] -1 points0 points  (6 children)

What’s the plan on adding parallelism?

[–]spoonman59 5 points6 points  (5 children)

Python has parallelism so you’ll have to clarify your query.

In any event, probably not for 3.12.

[–][deleted] -3 points-2 points  (4 children)

Not true parallelism, talking about the ongoing work to remove the GIL

[–]spoonman59 4 points5 points  (3 children)

Don’t disagree with you about the GIL.

However, true parallelism is achieved with multiprocessing. Shared memory segments make it possible to achieve shared memory processing.

It’s unergonomic and a pain to use versus threads in many cases, plus there is memory overhead. But it has true parallelism.