Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
orbea -
OpenLDAP
Commits
7375ffc0
Commit
7375ffc0
authored
Jan 30, 2019
by
Howard Chu
Browse files
ITS#8969 tweak mdb_page_split
Bump up number of keys for which we use fine-grained splitpoint search
parent
b15149a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/mdb.c
View file @
7375ffc0
...
...
@@ -8749,7 +8749,7 @@ mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno
* the split so the new page is emptier than the old page.
* This yields better packing during sequential inserts.
*/
if
(
nkeys
<
2
0
||
nsize
>
pmax
/
16
||
newindx
>=
nkeys
)
{
if
(
nkeys
<
3
2
||
nsize
>
pmax
/
16
||
newindx
>=
nkeys
)
{
/* Find split point */
psize
=
0
;
if
(
newindx
<=
split_indx
||
newindx
>=
nkeys
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment