jsonpath/benchmark/benches_lua_vs_rust/bench_lua_vs_rust.sh

26 lines
410 B
Bash
Raw Normal View History

2019-08-23 00:00:01 +09:00
#!/bin/bash
set -e
# http://luajit.org/index.html
cargo clean && \
cargo build --release
export JSONPATH_LIB_PATH="${PWD}/../../target/release"
export LUA_PATH="${PWD}/../../lua/?.lua;"
echo
time cargo run --release -- 1000
echo
time luajit example.lua 1000
echo
time cargo run --release -- 5000
echo
time luajit example.lua 5000
echo
time cargo run --release -- 10000
echo
time luajit example.lua 10000