mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 07:09:20 +08:00
Benchmark execute vs execute_batch
This commit is contained in:
parent
dd886578d2
commit
3cea0c7af5
@ -135,6 +135,10 @@ name = "vtab"
|
|||||||
name = "cache"
|
name = "cache"
|
||||||
harness = false
|
harness = false
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
name = "exec"
|
||||||
|
harness = false
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = [ "backup", "blob", "chrono", "collation", "functions", "limits", "load_extension", "serde_json", "trace", "url", "vtab", "window", "modern_sqlite", "column_decltype" ]
|
features = [ "backup", "blob", "chrono", "collation", "functions", "limits", "load_extension", "serde_json", "trace", "url", "vtab", "window", "modern_sqlite", "column_decltype" ]
|
||||||
all-features = false
|
all-features = false
|
||||||
|
17
benches/exec.rs
Normal file
17
benches/exec.rs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
use bencher::{benchmark_group, benchmark_main, Bencher};
|
||||||
|
use rusqlite::{Connection, NO_PARAMS};
|
||||||
|
|
||||||
|
fn bench_execute(b: &mut Bencher) {
|
||||||
|
let db = Connection::open_in_memory().unwrap();
|
||||||
|
let sql = "PRAGMA user_version=1";
|
||||||
|
b.iter(|| db.execute(sql, NO_PARAMS).unwrap());
|
||||||
|
}
|
||||||
|
|
||||||
|
fn bench_execute_batch(b: &mut Bencher) {
|
||||||
|
let db = Connection::open_in_memory().unwrap();
|
||||||
|
let sql = "PRAGMA user_version=1";
|
||||||
|
b.iter(|| db.execute_batch(sql).unwrap());
|
||||||
|
}
|
||||||
|
|
||||||
|
benchmark_group!(exec_benches, bench_execute, bench_execute_batch);
|
||||||
|
benchmark_main!(exec_benches);
|
Loading…
Reference in New Issue
Block a user