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

28
pages.zh/common/siege.md Normal file
View File

@@ -0,0 +1,28 @@
# siege
> HTTP负载测试和基准测试工具。
> 更多信息:<https://www.joedog.org/siege-manual/>.
- 使用默认设置测试一个URL
`siege {{https://example.com}}`
- 测试URL列表
`siege --file {{path/to/url_list.txt}}`
- 随机顺序测试URL列表模拟互联网流量
`siege --internet --file {{path/to/url_list.txt}}`
- 对URL列表进行基准测试请求之间不等待
`siege --benchmark --file {{path/to/url_list.txt}}`
- 设置并发连接的数量:
`siege --concurrent={{50}} --file {{path/to/url_list.txt}}`
- 设置围攻持续的时间:
`siege --time={{30s}} --file {{path/to/url_list.txt}}`