# tool_pressure_test **Repository Path**: boyane/tool_pressure_test ## Basic Information - **Project Name**: tool_pressure_test - **Description**: 并发测试工具 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-08-17 - **Last Updated**: 2022-09-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 压力测试工具 #### 一、配置文件 - 配置文件config.json ```json { "host": "https://api.niaippt.com", "n": 2, "c": 10, "request_type": "json", "urls": [ { "path": "/common/super_search", "params": [ { "key": "type", "value": "101" }, { "key": "keyword", "value": "热气球" } ] } ] } ``` > host: 请求接口域名 > n: 请求轮数 > c: 每轮请求并发数量 > request_type: 请求方法(json或form-data) > urls: 请求接口数组 > path: 请求接口url > params: 请求参数 > key: 参数名 > value: 参数值