Snehangshu Bhattacharyablogs.snehangshu.dev·Sep 21, 2024Python Multitasking: Key Practices and ChallengesWhen I first encountered the Python language, I was amazed by what you could do with so little code, and it has been one of my favourite programming languages since. Some time ago, I faced a problem where I was trying to create something like a web s...120 readsgreenlets
Hemachandrahemachandra.hashnode.dev·Aug 18, 2024Disabling GIL - Unleashing the True Power of PythonIntroduction Python is finally getting rid of its major limitation, the Global Interpreter Lock (GIL), which it has had since 1991. Before explaining what the GIL is, let's understand how computers and programming languages were designed in the 1990s...10 likes·255 readsNoGIL
David Osharedavidoshare.hashnode.dev·Jul 14, 2022Mastering Concurrency in Python: Threads, Processes, and the Global Interpreter Lock (GIL)Concurrency is a crucial concept in modern programming, allowing applications to perform multiple tasks simultaneously and utilize system resources efficiently. Python provides several mechanisms for achieving concurrency, including threads and proce...Python