Tag
#Concurrency
2posts

Tech11 min read
Python Concurrency: Understanding GIL, Threading, and Multiprocessing from First Principles
In-depth guide to Python Concurrency: Master the GIL, understand Threading vs Multiprocessing, optimize I/O vs CPU workloads, and backend architecture.
#Python#Concurrency#Backend

Tech6 min read
Python 3.15's Most Useful Changes Flew Under the Radar
Python 3.15 ships lazy imports and a Tachyon profiler, but the quietly useful additions are TaskGroup.cancel(), fixed context manager decorators, and…
#python#asyncio#concurrency