15 | | - starting `runserver` and making many calls with `ab -c 10 -n 100 http://127.0.0.1:8000/` uses all available connections and ends with error 500 (due to no available connections) |
16 | | - starting `runserver --nothreading` and making calls with `ab -c 100 -n 100 http://127.0.0.1:8000/` works fine |
| 15 | - CONN_MAX_AGE = 30, starting `runserver` and making many calls with `ab -c 10 -n 100 http://127.0.0.1:8000/` uses all available connections and ends with error 500 (due to no available connections) |
| 16 | - CONN_MAX_AGE = 30, starting `runserver --nothreading` and making calls with `ab -c 100 -n 100 http://127.0.0.1:8000/` works fine |
| 17 | |