ab: add CSV example and update pt_BR translation (#11931)

* ab: add CSV example

* ab: update pt_BR translation

* ab: leave values as part of the commands
This commit is contained in:
Vitor Henrique
2023-12-31 04:18:26 -03:00
committed by GitHub
parent 8810d911fe
commit c5508a288e
15 changed files with 56 additions and 44 deletions

View File

@@ -6,15 +6,15 @@
- 지정된 URL에 대해 100개의 HTTP GET 요청 실행:
`ab -n {{100}} {{url}}`
`ab -n 100 {{url}}`
- 지정된 URL에 대해 100개의 HTTP GET 요청을 최대 10개의 요청을 동시에 처리하며 실행:
`ab -n {{100}} -c {{10}} {{url}}`
`ab -n 100 -c 10 {{url}}`
- 지정된 파일의 JSON 페이로드를 사용하여 URL에 대해 100개의 HTTP POST 요청 실행:
`ab -n {{100}} -T {{application/json}} -p {{경로/대상/파일.json}} {{url}}`
`ab -n 100 -T {{application/json}} -p {{경로/대상/파일.json}} {{url}}`
- HTTP [K]eep Alive 사용, 즉 하나의 HTTP 세션 내에서 여러 요청을 수행: