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
This commit is contained in:
Marco Bonelli
2019-01-11 01:34:17 +01:00
committed by Starbeamrainbowlabs
parent d7f6df4ed7
commit 1286509fe5
13 changed files with 315 additions and 0 deletions

19
pages.it/common/ab.md Normal file
View File

@@ -0,0 +1,19 @@
# 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}}`