Skip to content

Commit

Permalink
Move SQLite3 to end of benchmark
Browse files Browse the repository at this point in the history
It takes the longest by far, so make it last so we get most the data if the benchmark is interupted.
  • Loading branch information
jesse-r-s-hines committed Mar 28, 2022
1 parent db8c639 commit 547a15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ int main(int argc, char** argv) {
"out/stores", // storeDir
100, // repeats
10 * GiB, // maxDbSize
{"SQLite3", "LevelDB", "RocksDB", "BerkeleyDB", "FlatFolder", "NestedFolder"}, // storeTypes
{"LevelDB", "RocksDB", "BerkeleyDB", "FlatFolder", "NestedFolder", "SQLite3"}, // storeTypes
storeFactory, // storeFactory
{ // sizeRanges
{1, 1*KiB - 1},
Expand Down

0 comments on commit 547a15d

Please sign in to comment.