Put skip list in its own shared lib
Some checks failed
weaselab/conflict-set/pipeline/head There was a failure building this commit

Now we can right benchmarks against one api, and just change the library
path
This commit is contained in:
2024-02-27 12:00:18 -08:00
parent 25a1226667
commit 68bd39e130
5 changed files with 771 additions and 667 deletions

View File

@@ -1867,7 +1867,7 @@ struct __attribute__((visibility("hidden"))) ConflictSet::Impl {
return;
}
this->oldestVersion = oldestVersion;
if (keyUpdates < 1000) {
if (keyUpdates < 100) {
return;
}
Node *prev = firstGeq(root, removalKey).n;