7za, 7zr, aapt, ab, alacritty, atom, avrdude, chown, chroot, clear, cmake, compare, curl, dd, diff: add German translation (#5286)

This commit is contained in:
marchersimon
2021-02-20 21:30:55 +01:00
committed by GitHub
parent 92a974ac06
commit e3c79db0e6
18 changed files with 341 additions and 0 deletions

24
pages.de/common/ab.md Normal file
View File

@@ -0,0 +1,24 @@
# ab
> Apache Benchmarking Tool. Das einfachste Tool um eine Belastungsprobe durchzuführen.
> Mehr Informationen: <https://httpd.apache.org/docs/2.4/programs/ab.html>.
- Sende 100 HTTP GET Anfragen an eine gegebene URL:
`ab -n {{100}} {{url}}`
- Sende 100 HTTP GET Anfragen an eine gegebene URL, wovon bis zu 10 gleichzeitig bearbeitet werden:
`ab -n {{100}} -c {{10}} {{url}}`
- Wach halten:
`ab -k {{url}}`
- Lege die maximale Anzahl an Sekunden fest, die das Benchmarking dauern darf:
`ab -t {{60}} {{url}}`
- Sende 100 HTTP POST Anfragen an eine gegebene URL, wobei eine JSON Belastung aus einer Datei verwendet wird:
`ab -n {{100}} -T {{application/json}} -p {{daten.json}} {{url}}`