Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- programming_book
- France
- ubuntu
- Book
- program
- RFID
- leadership
- AI
- Linux
- hadoop
- Java
- comic agile
- Italy
- agile
- Python
- MySQL
- web
- Book review
- Artificial Intelligence
- essay
- Programming
- erlang
- Malaysia
- QT
- django
- management
- Software Engineering
- history
- hbase
- Kuala Lumpur
Archives
- Today
- Total
ab post 방식 사용방법 본문
post url test
ab [-n number|-t time] -p [post query file] [-v verbose-level] -T "application/x-www-form-urlencoded" "[url]" |
- mandatory
- -n test 횟수 or -t 시간
- -p post data file
- -T "application/x-www-form-urlencoded" 없으면 query가 전달되지 않고 empty string이 됨
- optional
- -v verbose-level
- example ab -n 1 -p ./queryFile.txt -v 4 -T "application/x-www-form-urlencoded" "http://10.15.86.143:5000/analyze"
- cons 여러 데이터를 같이 사용하지 못함. multipart/form-data에 여러 데이터를 주는 예는 다음 링크 참조
Comments