common/w*: add Korean translation (#14523)

This commit is contained in:
코드싸이
2024-11-02 13:59:52 +09:00
committed by GitHub
parent 8a477df704
commit 8bcc0ead21
58 changed files with 1268 additions and 0 deletions

16
pages.ko/common/wrk.md Normal file
View File

@@ -0,0 +1,16 @@
# wrk
> HTTP 벤치마킹 도구.
> 더 많은 정보: <https://github.com/wg/wrk>.
- `12`개의 스레드를 사용하고 `400`개의 HTTP 연결을 열어 `30`초 동안 벤치마크 실행:
`wrk -t{{12}} -c{{400}} -d{{30s}} "{{http://127.0.0.1:8080/index.html}}"`
- 사용자 지정 헤더를 사용하여 벤치마크 실행:
`wrk -t{{2}} -c{{5}} -d{{5s}} -H "{{Host: example.com}}""{{http://example.com/index.html}}"`
- 요청 타임아웃을 `2`초로 설정하여 벤치마크 실행:
`wrk -t{{2}} -c{{5}} -d{{5s}} --timeout {{2s}} "{{http://example.com/index.html}}"`