This commit is contained in:
Bret Fisher 2017-11-30 14:59:18 -05:00
Родитель e9a7bdb19f
Коммит ba815ba7c1
4 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,9 @@
#!/bin/sh
# create POST data files with ab friendly formats
python make-data.py
# create 3000 votes
ab -n 1000 -c 50 -p posta -T "application/x-www-form-urlencoded" http://vote/
ab -n 1000 -c 50 -p postb -T "application/x-www-form-urlencoded" http://vote/
ab -n 1000 -c 50 -p posta -T "application/x-www-form-urlencoded" http://vote/

Просмотреть файл

@ -0,0 +1,13 @@
# this creates urlencode-friendly files without EOL
import urllib
outfile = open('postb', 'w')
params = ({ 'vote': 'b' })
encoded = urllib.urlencode(params)
outfile.write(encoded)
outfile.close()
outfile = open('posta', 'w')
params = ({ 'vote': 'a' })
encoded = urllib.urlencode(params)
outfile.write(encoded)
outfile.close()

1
swarm-stack-5/posta Normal file
Просмотреть файл

@ -0,0 +1 @@
vote=a

1
swarm-stack-5/postb Normal file
Просмотреть файл

@ -0,0 +1 @@
vote=b