fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
460 B
13 lines
460 B
# shellcheck disable=SC2148
|
|
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
PLATFORM=64
|
|
if [ `getconf LONG_BIT` != "64" ]
|
|
then
|
|
PLATFORM=32
|
|
fi
|
|
|
|
ROCKS_JAR=`find target -name rocksdbjni*.jar`
|
|
|
|
echo "Running benchmark in $PLATFORM-Bit mode."
|
|
# shellcheck disable=SC2068
|
|
java -server -d$PLATFORM -XX:NewSize=4m -XX:+AggressiveOpts -Djava.library.path=target -cp "${ROCKS_JAR}:benchmark/target/classes" org.rocksdb.benchmark.DbBenchmark $@
|
|
|