trailbase/trailbase-sqlite/benches
Sebastian Jeltsch e0ad4a898c Extend trailbase-sqlites execution model to allow for parallel reads. This reduces the latency long-tail for slow reads.
Note that this complicates the APIs, since it pushes the responsibility
of declaring a query a read or write to the user to then be scheduled
appropriately.

Add `.(read_|)query_row_f` APIs similar to rusqlites
`conn.query_row` accepting a `|row| -> Result<T>` to reduce the use of
`Row` and `Rows`.

Make benchmarks more isolated by not sharing a DB across runs
accumulating writes.
2025-04-15 12:15:40 +02:00
..
benchmark.rs Extend trailbase-sqlites execution model to allow for parallel reads. This reduces the latency long-tail for slow reads. 2025-04-15 12:15:40 +02:00
connection.rs Extend trailbase-sqlites execution model to allow for parallel reads. This reduces the latency long-tail for slow reads. 2025-04-15 12:15:40 +02:00
error.rs Add read benchmarks to trailbase-sqlite. 2025-04-12 13:09:22 +02:00