How I made my Django project almost as fast as FastAPI
FastAPI runs on Uvicorn, an ASGI server made for Python code that runs at the same time. Django is older and has more features, but from version 3.0, it can also operate on ASGI with Uvicorn. Once you set up Django on Uvicorn and make queries and caching work better, you can get the same […]
How I made my Django project almost as fast as FastAPI Read More »