tldr : add korean translation (#3533)

This commit is contained in:
Proscream
2019-11-11 10:15:51 +09:00
committed by Ein Verne
parent c7399f24e5
commit 13d5dd0ac8
8 changed files with 191 additions and 0 deletions

21
pages.ko/common/ab.md Normal file
View File

@@ -0,0 +1,21 @@
# ab
> 아파치 벤치마킹 도구.
> 로드 테스트를 수행하는 가장 간단한 도구.
> 더 많은 정보: <https://httpd.apache.org/docs/2.4/programs/ab.html>.
- 주어진 URL에 대해 100개의 HTTP GET 요청 실행:
`ab -n {{100}} {{url}}`
- 지정된 URL에 대해 최대 10개의 요청을 동시에 처리하여 100개의 HTTP GET을 실행:
`ab -n {{100}} -c {{10}} {{url}}`
- 생존을 유지하며 사용:
`ab -k {{url}}`
- 벤치마킹에 사용될 최대 시간(초) 설정:
`ab -t {{60}} {{url}}`