0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【パフォーマンス】ab コマンドの使い方

Last updated at Posted at 2024-12-17

abコマンドとは Apache Bench です。
Apache Bench とは WEBサーバの性能確認ツールです。

使い方

一般 -n -c -p -H がわかれば問題ないです。

  • -n リクエスト数
  • -c クライアント数
  • -p ポストファイル
  • -H ヘッダー

GET

ab -c 10 -n 1000 http://localhost

同時10クライアントで1000リクエストをGETします。

POST

ab -c 100 -n 10000 -p data.json -H ‘Content-Type:application/json’ http://localhost

同時100クライアント・10000リクエストでdata.jsonをPostします。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?