mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-06 17:54:20 +01:00
SQLite performs poorly for connections as the number of tables increase. Do we perform better? the same? worse? Right now the answer is worse. Add a benchmark to help us compare.
15 lines
276 B
TOML
15 lines
276 B
TOML
[package]
|
|
name = "limbo-connection-benchmark"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
env_logger = "0.11.0"
|
|
hdrhistogram = "7.5.2"
|
|
turso_core = { path = "../../../core" }
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[workspace] |