From: Dennis Schafroth Date: Wed, 17 Mar 2010 12:52:16 +0000 (+0100) Subject: Added port parameter and block=1 X-Git-Tag: v1.4.0~74 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=9acc1c1db53cec2c6ca8406f8dc62e958e939ac8;p=pazpar2-moved-to-github.git Added port parameter and block=1 --- diff --git a/perf/bash/client.sh b/perf/bash/client.sh index 06aa523..aced882 100755 --- a/perf/bash/client.sh +++ b/perf/bash/client.sh @@ -3,9 +3,16 @@ OF=$1 if test -z "$OF"; then OF=1 fi -H='http://localhost:9004/search.pz2' -wget -q -O $OF.init.xml "$H/?command=init&service=perf&extra=$OF" + +PORT=$2 +if test -z "$PORT"; then + PORT=9004 +fi + + +H="http://localhost:${PORT}/search.pz2" +wget -q -O $OF.init.xml "$H/?command=init&service=perf_t&extra=$OF" S=`xsltproc get_session.xsl $OF.init.xml` wget -q -O $OF.search.xml "$H?command=search&query=100&session=$S" -sleep 0.5 -wget -q -O $OF.show.xml "$H?command=show&session=$S" +sleep 1 +wget -q -O $OF.show.xml "$H?command=show&session=$S&num=100&block=1"