junhe / wiscsee

WiscSee tells if you are using SSDs in the right way.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

query regarding SQLite microbenchmark used in study "The Unwritten Contract..."

rakeshpandit opened this issue · comments

The paper ("The Unwritten Contract...") mentions a microbenchmark developed by you folks to test SQLite workloads. Even though it seems simple to develop, it would be great if you can point me somewhere it is available for download or share.

My aim was to replicate the readings done for request scale... and others. Rather than re-writing I would rather use what you folks already used after checking it.

Thank you in advance.

The benchmark for SQLite is here https://github.com/junhe/wiscsee/tree/full-func/sqlitebench, in the full-func branch. I removed it from the master branch for simplicity of the code.

You can find out how to use sqlbench in the unit tests https://github.com/junhe/wiscsee/blob/full-func/tests/test_sqlitebench.py

Thank you for quick answer.