summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-14 00:06:33 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-14 00:06:33 -0400
commitc6bd9c80ef5038cca580191148d9b88ab505bcf6 (patch)
tree596ab05ee81a5d5ad5c351fdef5e78eb50efe708 /README.org
downloadsqlite-kv-bench-c6bd9c80ef5038cca580191148d9b88ab505bcf6.tar.gz
init
Diffstat (limited to 'README.org')
-rw-r--r--README.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..0a4609e
--- /dev/null
+++ b/README.org
@@ -0,0 +1,12 @@
+* how to use
+First create the test database with ~scripts/mkdb.py~.
+
+The benchmark executable reads keys from stdin.
+
+An example run of the benchmark:
+
+#+BEGIN_SRC_BASH
+sqlite3 "${database}" "select kv.key from kv" | shuf | bench ${database}
+#+END_SRC
+
+