Backend Development

Architecture

  • With WSGI, the web app isn’t scalable on its own, instead, the HTTP server (Apache, Nginx) spawns child processes which communicate with their own web app through WSGI API.
  • ASGI.

Tools