¡Esta es una revisión vieja del documento!
Is a load testing tool in which you define user behaviour and the system launches a lot of non-real users accessing your web page.
$ pip install locustio
In the same path than the locust file:
locust
Or in different path:
locust -f ../locust_files/my_locust_file.py
$ pip install pyzmqYou'll need a master:
locust -f ../locust_files/my_locust_file.py --master
And an arbitrary number of slave processes:
locust -f ../locust_files/my_locust_file.py --slave
Or with multiple machines:
locust -f ../locust_files/my_locust_file.py --slave --master-host=192.168.0.100
You only need to access the url: http://127.0.0.1:8089