exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

run.bash (319B)


      1 #/usr/bin/env bash
      2 
      3 for x in $(seq 10 10 190) $(seq 200 100 2000); do
      4 	echo running with $x clients
      5 	rm -rf stats
      6 	taler-exchange-benchmark -c benchmark-local.conf -p $x -n 1000 >& /dev/shm/benchmark.log
      7 	mkdir -p "results/stats-$x"
      8 	cp -a stats "results/stats-$x"/
      9 	cp /dev/shm/benchmark.log "results/stats-$x/"
     10 done