Skip to content

Commit

Permalink
Benchmark for cuckoo filters at 31.5 million keys (where fpp for 2^n …
Browse files Browse the repository at this point in the history
…and not-2^n are similar)
  • Loading branch information
thomasmueller committed Aug 24, 2019
1 parent af2ff2a commit 7b3dc82
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions benchmarks/benchmark-cuckoo315.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/sh
# run the benchmark multiple times with all important algorithms
# for algorithm ids and other parameters, see
# bulk-insert-and-query.cc
#
# rnd: random number generators to use
for rnd in `seq -1 -1`; do
# alg: algorithms to test
for alg in 11 12 13 15 16 17; do
# m: number of entries
for m in 315; do
# test: test id
for test in `seq 1 3`; do
now=$(date +"%T");
echo ${now} alg ${alg} size ${m} ${rnd};
./bulk-insert-and-query.exe ${m}00000 ${alg} ${rnd};
done;
done;
done;
done > benchmark-results.txt 2>&1

0 comments on commit 7b3dc82

Please sign in to comment.