Created
March 27, 2011 23:06
-
-
Save spmallette/889740 to your computer and use it in GitHub Desktop.
beat up rexster
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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