How I made `json.dumps` ~20% faster
This post was first published in aivarsk.com My journey to understand the performance and concurrency of FastAPI services lead me to the Python json.dumps function producing JSON string out of object tree. And I ended up making it a bit faster. _PyAccu vs _PyUnicodeWriter How do you create the JSON...