Skip to content

Commit

Permalink
increase default neighbor cache size to 4k entries
Browse files Browse the repository at this point in the history
- it seems it doesn't have any significant memory or perf. effect
  • Loading branch information
astibal committed Apr 22, 2024
1 parent 1ef9690 commit 69128e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proxy/nbrhood.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ class NbrHood {
}

static NbrHood& instance() {
static NbrHood r(1000);
static NbrHood r(4000);
return r;
}
private:
Expand Down

0 comments on commit 69128e0

Please sign in to comment.