You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- HOME=$(cd `dirname $0`;cd ../; pwd)
- KVDB=$(ls $HOME/libs | grep kvdb-benchmark)
- JVM_SET="-Xmx2g -Xms2g"
- LOG_SET="-Dlogging.path="$HOME/logs" -Dlogging.level=error"
- PROC_INFO=$HOME/libs/$KVDB
- if [ ! -n "$KVDB" ]; then
- echo "Can not find kvdb-benchmark !!!"
- else
- java -jar $LOG_SET $JVM_SET $PROC_INFO $*
- fi
|