yacy_search_server/bin/searchtest.sh
orbiter d39d420b39 performance hacks
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5376 6c8d7289-2bf4-0310-a012-ef5d649a1542
2008-12-03 15:38:29 +00:00

12 lines
272 B
Bash
Executable File

#!/bin/sh
cd "`dirname $0`"
S=`date "+%s"`
C=0
for N in `cat searchtest.words`; do
echo search for $N:
./localsearch.sh $N > /dev/null
C=$(($C+1))
done
T=`date "+%s"`
echo runtime = $(($T-$S)) seconds, count = $C, time per query = $((1000*($T-$S)/$C)) milliseconds