python - How to check the performance of a django application? -
i have created django app. want test application's performance 5000 data. there method ? there method randomly enter data db , run application ? believe there should method rather typing 5000 data manually db. database use mysql. quite new python , django, please me solve . in advance.
pycheesecake.org provides source of testing tools python.
you might want checkout django-autofixture, nice tool inserting randomly generated data database, , django-mockups, fork django-autofixture.
here sample usage of django-autofixture:
django-admin.py loadtestdata [options] app.model:# [app.model:# ...]
you supply app name, model , number of objects want create.
Comments
Post a Comment