Skip to content

Instantly share code, notes, and snippets.

@spmallette
Created March 27, 2011 23:06
Show Gist options
  • Save spmallette/889740 to your computer and use it in GitHub Desktop.
Save spmallette/889740 to your computer and use it in GitHub Desktop.
beat up rexster
for i in {1..1000}
do
echo "[graph] fire $i" >> log.txt
curl -v http://localhost:8182/neo4jsample >> log.txt
echo "" >> log.txt
done
for i in {1..1000}
do
echo "[vertices] fire $i" >> log.txt
curl -v http://localhost:8182/neo4jsample/vertices >> log.txt
echo "" >> log.txt
done
for i in {1..1000}
do
echo "[edges] fire $i" >> log.txt
curl -v http://localhost:8182/neo4jsample/edges >> log.txt
echo "" >> log.txt
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment