mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-28 13:34:24 +01:00
191 lines
6.4 KiB
Rust
191 lines
6.4 KiB
Rust
use criterion::{criterion_group, criterion_main, Criterion, Throughput};
|
|
use limbo_core::{Database, PlatformIO, IO};
|
|
use pprof::criterion::{Output, PProfProfiler};
|
|
use std::sync::Arc;
|
|
|
|
fn bench(c: &mut Criterion) {
|
|
limbo_bench(c);
|
|
|
|
// https://github.com/penberg/limbo/issues/174
|
|
// The rusqlite benchmark crashes on Mac M1 when using the flamegraph features
|
|
if std::env::var("DISABLE_RUSQLITE_BENCHMARK").is_ok() {
|
|
return;
|
|
}
|
|
|
|
rusqlite_bench(c)
|
|
}
|
|
|
|
fn limbo_bench(criterion: &mut Criterion) {
|
|
let mut group = criterion.benchmark_group("limbo");
|
|
group.throughput(Throughput::Elements(1));
|
|
let io = Arc::new(PlatformIO::new().unwrap());
|
|
let db = Database::open_file(io.clone(), "../testing/testing.db").unwrap();
|
|
let conn = db.connect();
|
|
|
|
group.bench_function("Prepare statement: 'SELECT 1'", |b| {
|
|
b.iter(|| {
|
|
conn.prepare("SELECT 1").unwrap();
|
|
});
|
|
});
|
|
|
|
group.bench_function("Prepare statement: 'SELECT * FROM users LIMIT 1'", |b| {
|
|
b.iter(|| {
|
|
conn.prepare("SELECT * FROM users LIMIT 1").unwrap();
|
|
});
|
|
});
|
|
|
|
group.bench_function("Prepare statement: 'SELECT first_name, count(1) FROM users GROUP BY first_name HAVING count(1) > 1 ORDER BY count(1) LIMIT 1'", |b| {
|
|
b.iter(|| {
|
|
conn.prepare("SELECT first_name, count(1) FROM users GROUP BY first_name HAVING count(1) > 1 ORDER BY count(1) LIMIT 1").unwrap();
|
|
});
|
|
});
|
|
|
|
let mut stmt = conn.prepare("SELECT 1").unwrap();
|
|
group.bench_function("Execute prepared statement: 'SELECT 1'", |b| {
|
|
let io = io.clone();
|
|
b.iter(|| {
|
|
let mut rows = stmt.query().unwrap();
|
|
match rows.next_row().unwrap() {
|
|
limbo_core::StepResult::Row(row) => {
|
|
assert_eq!(row.get::<i64>(0).unwrap(), 1);
|
|
}
|
|
limbo_core::StepResult::IO => {
|
|
io.run_once().unwrap();
|
|
}
|
|
limbo_core::StepResult::Interrupt => {
|
|
unreachable!();
|
|
}
|
|
limbo_core::StepResult::Done => {
|
|
unreachable!();
|
|
}
|
|
limbo_core::StepResult::Busy => {
|
|
unreachable!();
|
|
}
|
|
}
|
|
stmt.reset();
|
|
});
|
|
});
|
|
|
|
let mut stmt = conn.prepare("SELECT * FROM users LIMIT 1").unwrap();
|
|
group.bench_function(
|
|
"Execute prepared statement: 'SELECT * FROM users LIMIT 1'",
|
|
|b| {
|
|
let io = io.clone();
|
|
b.iter(|| {
|
|
let mut rows = stmt.query().unwrap();
|
|
match rows.next_row().unwrap() {
|
|
limbo_core::StepResult::Row(row) => {
|
|
assert_eq!(row.get::<i64>(0).unwrap(), 1);
|
|
}
|
|
limbo_core::StepResult::IO => {
|
|
io.run_once().unwrap();
|
|
}
|
|
limbo_core::StepResult::Interrupt => {
|
|
unreachable!();
|
|
}
|
|
limbo_core::StepResult::Done => {
|
|
unreachable!();
|
|
}
|
|
limbo_core::StepResult::Busy => {
|
|
unreachable!()
|
|
}
|
|
}
|
|
stmt.reset();
|
|
});
|
|
},
|
|
);
|
|
|
|
let mut stmt = conn.prepare("SELECT * FROM users LIMIT 100").unwrap();
|
|
group.bench_function(
|
|
"Execute prepared statement: 'SELECT * FROM users LIMIT 100'",
|
|
|b| {
|
|
let io = io.clone();
|
|
b.iter(|| {
|
|
let mut rows = stmt.query().unwrap();
|
|
match rows.next_row().unwrap() {
|
|
limbo_core::StepResult::Row(row) => {
|
|
assert_eq!(row.get::<i64>(0).unwrap(), 1);
|
|
}
|
|
limbo_core::StepResult::IO => {
|
|
io.run_once().unwrap();
|
|
}
|
|
limbo_core::StepResult::Interrupt => {
|
|
unreachable!();
|
|
}
|
|
limbo_core::StepResult::Done => {
|
|
unreachable!();
|
|
}
|
|
limbo_core::StepResult::Busy => {
|
|
unreachable!()
|
|
}
|
|
}
|
|
stmt.reset();
|
|
});
|
|
},
|
|
);
|
|
}
|
|
|
|
fn rusqlite_bench(criterion: &mut Criterion) {
|
|
let mut group = criterion.benchmark_group("rusqlite");
|
|
group.throughput(Throughput::Elements(1));
|
|
|
|
let conn = rusqlite::Connection::open("../testing/testing.db").unwrap();
|
|
|
|
conn.pragma_update(None, "locking_mode", "EXCLUSIVE")
|
|
.unwrap();
|
|
group.bench_function("Prepare statement: 'SELECT 1'", |b| {
|
|
b.iter(|| {
|
|
conn.prepare("SELECT 1").unwrap();
|
|
});
|
|
});
|
|
|
|
group.bench_function("Prepare statement: 'SELECT * FROM users LIMIT 1'", |b| {
|
|
b.iter(|| {
|
|
conn.prepare("SELECT * FROM users LIMIT 1").unwrap();
|
|
});
|
|
});
|
|
|
|
let mut stmt = conn.prepare("SELECT 1").unwrap();
|
|
group.bench_function("Execute prepared statement: 'SELECT 1'", |b| {
|
|
b.iter(|| {
|
|
let mut rows = stmt.query(()).unwrap();
|
|
let row = rows.next().unwrap().unwrap();
|
|
let val: i64 = row.get(0).unwrap();
|
|
assert_eq!(val, 1);
|
|
});
|
|
});
|
|
|
|
let mut stmt = conn.prepare("SELECT * FROM users LIMIT 1").unwrap();
|
|
group.bench_function(
|
|
"Execute prepared statement: 'SELECT * FROM users LIMIT 1'",
|
|
|b| {
|
|
b.iter(|| {
|
|
let mut rows = stmt.query(()).unwrap();
|
|
let row = rows.next().unwrap().unwrap();
|
|
let id: i64 = row.get(0).unwrap();
|
|
assert_eq!(id, 1);
|
|
});
|
|
},
|
|
);
|
|
|
|
let mut stmt = conn.prepare("SELECT * FROM users LIMIT 100").unwrap();
|
|
group.bench_function(
|
|
"Execute prepared statement: 'SELECT * FROM users LIMIT 100'",
|
|
|b| {
|
|
b.iter(|| {
|
|
let mut rows = stmt.query(()).unwrap();
|
|
let row = rows.next().unwrap().unwrap();
|
|
let id: i64 = row.get(0).unwrap();
|
|
assert_eq!(id, 1);
|
|
});
|
|
},
|
|
);
|
|
}
|
|
|
|
criterion_group! {
|
|
name = benches;
|
|
config = Criterion::default().with_profiler(PProfProfiler::new(100, Output::Flamegraph(None)));
|
|
targets = bench
|
|
}
|
|
criterion_main!(benches);
|