1. 程式人生 > 程式設計 >Python效能測試工具Locust安裝及使用

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 引數化

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。