mirror of
https://github.com/tanrax/python-api-frameworks-benchmark
synced 2026-01-10 07:13:37 +01:00
- Added DRF implementation with identical endpoints - Updated benchmark scripts to include DRF (port 8005) - Ran comprehensive benchmarks with all 5 frameworks - Updated documentation and results - Generated new comparison graphs Results show Django Bolt leading in all endpoints, with DRF showing lowest JSON performance but competitive DB performance.
9 lines
247 B
Bash
Executable File
9 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
# Run Django REST Framework benchmark server
|
|
# Port: 8005
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "Starting Django REST Framework on port 8005..."
|
|
exec uvicorn django_project.asgi:application --host 0.0.0.0 --port 8005 --workers 1 --no-access-log
|