How to check django application performance?

I created a django application. Now I want to test the performance of an application with approximately 5,000 data. Is there any way to do this? Is there any way to randomly enter this data into db and run the application? I believe that there should be some method, and not enter 5000 data manually in db. In the database, I am using mysql. I am new to Python and Django, so please help me solve this problem. Thanks in advance.

+3
source share
2 answers

pycheesecake.org provides a good source of testing tools for python.

django-autofixture, django-mockups, django-autofixture.

django-autofixture:

django-admin.py loadtestdata [options] app.Model:# [app.Model:# ...]

, , .

+2

django-dilla. .

, INSTALLED_APPS, python manage.py run_dilla .

, python manage.py run_dilla --help, "". .

+4

Source: https://habr.com/ru/post/1795662/


All Articles