|
|
|
|
|
by jacob019
1649 days ago
|
|
I'm sick of everyone hating on python speed. IO is the bottleneck. By my estimate, 95% of applications are spending <5% of their response time executing python. Maybe your application is compute heavy and is better written in rust, but python gets shit done with minimal effort and the extra cycles are rarely an issue in most workloads. |
|
You can definitely outrun I/O but you can never outrun the GIL.