add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,21 @@
# http_load
> 一款HTTP基准测试工具。
> 通过并行运行多个HTTP请求来测试Web服务器的吞吐量。
> 更多信息请访问:<https://www.acme.com/software/http_load/>.
- 每秒基于给定的URL列表文件模拟20个请求持续60秒
`http_load -rate {{20}} -seconds {{60}} {{path/to/urls.txt}}`
- 每秒基于给定的URL列表文件模拟5个并发请求持续60秒
`http_load -parallel {{5}} -seconds {{60}} {{path/to/urls.txt}}`
- 基于给定的URL列表文件以每秒20个请求模拟1000个请求
`http_load -rate {{20}} -fetches {{1000}} {{path/to/urls.txt}}`
- 基于给定的URL列表文件以5个并发请求模拟1000个请求
`http_load -parallel {{5}} -fetches {{1000}} {{path/to/urls.txt}}`