1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 09:15:32 +02:00

ab: update Korean translation (#10687)

This commit is contained in:
ECMs 2023-09-07 21:15:03 +09:00 committed by GitHub
parent 28d7f4332e
commit 995f1c9b27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,15 +4,19 @@
> 로드 테스트를 수행하는 가장 간단한 도구.
> 더 많은 정보: <https://httpd.apache.org/docs/current/programs/ab.html>.
- 주어진 URL에 대해 100개의 HTTP GET 요청 실행:
- 지정된 URL에 대해 100개의 HTTP GET 요청 실행:
`ab -n {{100}} {{url}}`
- 지정된 URL에 대해 최대 10개의 요청을 동시에 처리하여 100개의 HTTP GET을 실행:
- 지정된 URL에 대해 100개의 HTTP GET 요청을 최대 10개의 요청을 동시에 처리하며 실행:
`ab -n {{100}} -c {{10}} {{url}}`
- 생존을 유지하며 사용:
- 지정된 파일의 JSON 페이로드를 사용하여 URL에 대해 100개의 HTTP POST 요청 실행:
`ab -n {{100}} -T {{application/json}} -p {{경로/대상/파일.json}} {{url}}`
- HTTP [K]eep Alive 사용, 즉 하나의 HTTP 세션 내에서 여러 요청을 수행:
`ab -k {{url}}`