Skip to content

Commit ca4c50d

Browse files
committed
used EXFOs load_to_stardog test to validate new skiplist settings after flamegraph should long processing times on lookup
1 parent bb35552 commit ca4c50d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

memtable/inlineskiplist.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ class InlineSkipList {
7272
// in the allocator must remain allocated for the lifetime of the
7373
// skiplist object.
7474
explicit InlineSkipList(Comparator cmp, Allocator* allocator,
75-
int32_t max_height = 12,
76-
int32_t branching_factor = 4);
75+
int32_t max_height = 24,
76+
int32_t branching_factor = 2);
7777
// No copying allowed
7878
InlineSkipList(const InlineSkipList&) = delete;
7979
InlineSkipList& operator=(const InlineSkipList&) = delete;

memtable/skiplist.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class SkipList {
5050
// and will allocate memory using "*allocator". Objects allocated in the
5151
// allocator must remain allocated for the lifetime of the skiplist object.
5252
explicit SkipList(Comparator cmp, Allocator* allocator,
53-
int32_t max_height = 12, int32_t branching_factor = 4);
53+
int32_t max_height = 24, int32_t branching_factor = 2);
5454
// No copying allowed
5555
SkipList(const SkipList&) = delete;
5656
void operator=(const SkipList&) = delete;

0 commit comments

Comments
 (0)