DMDaniel Madarinpystack.hashnode.dev·Dec 6, 2024 · 4 min readConcurrency in PythonWhen high-performance is required There are several ways to achieve concurrency in Python and each of them has its own trade-off: A-sync, Multi-Thread and Multi-Process. First of all, let’s break the myth — Python is NOT a single threaded language! Y...00
DMDaniel Madarinpystack.hashnode.dev·Oct 18, 2024 · 6 min readDocker — Hello WorldWhat is Docker ? Docker usually described as a “software platform that allows you to deploy applications” but what does it really mean ? Let’s start with a simple example: You want to write an application that uses some kind of database, like Postgre...00