You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usage of buntdb-benchmark:
-N int
Number of times to re-run the tests. -1 = forever (default 1)
-P int
Number requests per transaction (default 1)
-csv
Output in CSV format
-mem
Use only memory, no disk persistence
-n int
Number of operations per test (default 100000)
-q Quiet. Just show query/sec values
-r int
Number of parallel goroutines (default 10)
-s int
Number of items in the random set (default 1000)
-t string
Only run the comma separated list of tests
To run every test:
buntdb-benchmark
Benchmark output:
====== GET ======
100000 operations completed in 0.02 seconds
1000 item random data set
10 parallel goroutines
heap usage: 25264 bytes
4141982.69 operations per second
====== SET ======
100000 operations completed in 0.40 seconds
1000 item random data set
10 parallel goroutines
heap usage: 101864 bytes
249158.03 operations per second
...
Quick and Easy Benchmarks
The -q option will only output the operations per second lines.
This is the results of running the benchmarks on a MacBook Pro 15" 2.8 GHz Intel Core i7:
$ buntdb-benchmark -q
GET: 4609604.74 operations per second
SET: 248500.33 operations per second
ASCEND_100: 2268998.79 operations per second
ASCEND_200: 1178388.14 operations per second
ASCEND_400: 679134.20 operations per second
ASCEND_800: 348445.55 operations per second
DESCEND_100: 2313821.69 operations per second
DESCEND_200: 1292738.38 operations per second
DESCEND_400: 675258.76 operations per second
DESCEND_800: 337481.67 operations per second
SPATIAL_SET: 134824.60 operations per second
SPATIAL_INTERSECTS_100: 939491.47 operations per second
SPATIAL_INTERSECTS_200: 561590.40 operations per second
SPATIAL_INTERSECTS_400: 306951.15 operations per second
SPATIAL_INTERSECTS_800: 159673.91 operations per second