Python性能測試工具Locust安裝及使用
介紹
An open source load testing tool.
一個開源性能測試工具。
define user behaviour with python code, and swarm your system with millions of simultaneous users.
使用Python代碼來定義用戶行為。用它可以模擬百萬計的并發用戶訪問你的系統。
官方網站:http://locust.io/
Locust安裝
1、安裝Python:
官方:https://www.python.org/
安裝Python2 或Python3
2、安裝Locuse
2.1, 通過pip命令安裝 /> pip install locustio
2.2, 通過GitHub上克隆項目安裝(Python3推薦):https://github.com/locustio/locust
3、安裝 pyzmq
If you intend to run Locust distributed across multiple processes/machines, we recommend you to also install pyzmq.
如果你打算運行Locust 分布在多個進程/機器,我們建議你也安裝pyzmq.
通過pip命令安裝。 /> pip install pyzmq
4、安裝成功,CMD敲入命令驗證。 /> locust --help
快速使用
(一)Locust 介紹
(二)Locust 安裝
(三)Locust 創建性能測試
(四)Locust no-...
(五)Locust 參數說明
(六)Locust 分布式運行
(七)Locust 的類和方法
(八)Locust 設置斷言
(九)Locust 參數化
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。
相關文章:
