Changes between Version 1 and Version 2 of Ticket #31515, comment 7


Ignore:
Timestamp:
Apr 25, 2020, 8:41:08 PM (4 years ago)
Author:
Braunson

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31515, comment 7

    v1 v2  
    1818
    1919[[Image(https://i.imgur.com/LRdVrAL.png)]]
     20
     21I packaged up a small test project. Run `pip install -r requirements.txt && python manage.py migrate`, then startup the ASGI with `uvicorn djangobug_repro.asgi:application --reload`
     22
     23Go to the homepage a couple times and run `show processlist;` in your SQL server to see the IDs not change, ie the connection is being reused. You can also run a benchmark with ab: `ab -c 20 -n 300` and see the connections reused.
     24
Back to Top