|
|
|
|
|
by merb
3643 days ago
|
|
Actually I never found Python "slow". I found it "slow" in some things, but not "all things are slow with python".
What was problematic was pulling big lists from a database and doing some stuff with the list. Also it was really akward that "threading" is not really great on python. Especially not when you are using 16 core servers.
I mean you could create vm's for that or dockerize that. but that means deployment complexity increases which wasn't our goal. But I've seen a lot of successful python deployments and if you have enough manpower you pretty sure can run with CPython just fine. |
|
I think it's pretty non-controversial to say that basic language operations in Python are slower than in other language implementations, which is what this post is talking about.