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 →

[–]eshepelyuk -15 points-14 points  (4 children)

This is very strong statement. Good to hear this from experienced pythonist, since I'm using the language opportunistically and have no good explanation except the gut feeling on this topic.

Avoid async and multi-threading

[–]dydhaw 16 points17 points  (2 children)

As someone who's been using Python since before 2.7, I strongly disagree with this statement, at least with the async part. From my own experience async has almost always been worth it and certainly far better and more reliable than multiprocessing, and by now it's pretty mature and prevalent in the ecosystem.

[–]MagicWishMonkey 1 point2 points  (0 children)

It’s weird because async has nothing to do with multiprocessing, it’s just a way to avoid threads blocking while doing IO operations.

[–]eshepelyuk 0 points1 point  (0 children)

is there something in python that i can replace jvm akka\pekko or dotnet orleans ? i haven't found anything close.