Skip to content

Commit f9e3f82

Browse files
committed
Reduce default max load factor to 0.75.
1 parent 1bd1173 commit f9e3f82

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tsl/ordered_hash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,7 @@ class ordered_hash: private Hash, private KeyEqual {
12641264

12651265
public:
12661266
static const size_type DEFAULT_INIT_BUCKETS_SIZE = 16;
1267-
static constexpr float DEFAULT_MAX_LOAD_FACTOR = 0.9f;
1267+
static constexpr float DEFAULT_MAX_LOAD_FACTOR = 0.75f;
12681268

12691269
private:
12701270
static const size_type REHASH_ON_HIGH_NB_PROBES__NPROBES = 128;

0 commit comments

Comments
 (0)