Files
tldr/pages.ja/common/ab.md
K.B.Dharun Krishna 8538a31451 pages/*: add standard translation and links (#11331)
* pages/*: add standard translation and links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix1: false positives; standardize Bengali, Hindi, Nepali periods

* fix: periods in recently added Bengali pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix: false positives in modified files

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: update to native period in Bengali l10n

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-06 14:02:31 +05:30

810 B

ab

Apache HTTP server のベンチマーク用ツールです。 詳しくはこちら: https://httpd.apache.org/docs/current/programs/ab.html

  • 指定された URL に 100 個の GET リクエストを送信する:

ab -n {{100}} {{url}}

  • 指定された URL に 100 個の GET リクエストを、10 個ずつ同時に送信する:

ab -n {{100}} -c {{10}} {{url}}

  • ファイルからの JSON ペイロードを使って、指定された URL に 100 個の POST リクエストを送信する:

ab -n {{100}} -T {{application/json}} -p {{ファイルパス.json}} {{url}}

  • [K]eep Alive を有効化する(1つの HTTP セッションで複数のリクエストを実行する):

ab -k {{url}}

  • ベンチマークを行う最大秒数を設定する:

ab -t {{60}} {{url}}