1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.it/common/ab.md
Marco Bonelli 1286509fe5 multiple pages: add italian translations (#2692)
Translated 13 pages into italian:
  7z
  7za
  7zr
  ab
  abduco
  ack
  adb
  ag
  airpaste
  alias
  ansible-galaxy
  ansible-playbook
  ansible
2019-01-11 00:34:17 +00:00

19 lines
446 B
Markdown

# ab
> Strumento di benchmarking di Apache. Il più semplice modo per eseguire un test sul carico del server.
- Esegui 100 richieste HTTP GET ad un dato URL:
`ab -n {{100}} {{url}}`
- Esegui 100 richieste HTTP GET ad un dato url, processandone fino a 10 requests contemporaneamente:
`ab -n {{100}} -c {{10}} {{url}}`
- Usa keep alive:
`ab -k {{url}}`
- Setta il massimo numero di secondi per il benchmarking:
`ab -t {{secondi}} {{url}}`