2019-01-11 00:34:17 +00:00
|
|
|
# ab
|
|
|
|
|
|
|
|
> Strumento di benchmarking di Apache. Il più semplice modo per eseguire un test sul carico del server.
|
2021-03-13 21:44:59 +00:00
|
|
|
> Maggiori informazioni: <https://httpd.apache.org/docs/current/programs/ab.html>.
|
2019-01-11 00:34:17 +00:00
|
|
|
|
|
|
|
- Esegui 100 richieste HTTP GET ad un dato URL:
|
|
|
|
|
|
|
|
`ab -n {{100}} {{url}}`
|
|
|
|
|
2021-04-21 11:03:47 +01:00
|
|
|
- Esegui 100 richieste HTTP GET ad un dato URL, processandone fino a 10 contemporaneamente:
|
2019-01-11 00:34:17 +00:00
|
|
|
|
|
|
|
`ab -n {{100}} -c {{10}} {{url}}`
|
|
|
|
|
2021-04-21 11:03:47 +01:00
|
|
|
- Esegui 100 richieste HTTP POST a un dato URL, utilizzando un payload JSON tramite file:
|
|
|
|
|
|
|
|
`ab -n {{100}} -T {{application/json}} -p {{percorso/a/file.json}} {{url}}`
|
|
|
|
|
|
|
|
- Usa HTTP [K]eep Alive, ovvero esegui richieste multiple in una stessa sessione HTTP:
|
2019-01-11 00:34:17 +00:00
|
|
|
|
|
|
|
`ab -k {{url}}`
|
|
|
|
|
|
|
|
- Setta il massimo numero di secondi per il benchmarking:
|
|
|
|
|
|
|
|
`ab -t {{secondi}} {{url}}`
|