Performance: Development server and runserver
MEDIUM IMPACT
This affects the development environment's responsiveness and reload speed, impacting how quickly developers see changes reflected in the browser.
python manage.py runserver
python manage.py runserver --noreload
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Django runserver with autoreload | N/A | N/A | N/A | [OK] Good for development speed |
| Django runserver without autoreload | N/A | N/A | N/A | [!] OK but slows developer feedback |
| Django runserver in production | N/A | N/A | N/A | [X] Bad for user performance and scalability |
| Production WSGI server (Gunicorn/uWSGI) | N/A | N/A | N/A | [OK] Good for production performance |