ITS#8969 tweak mdb_page_split

Bump up number of keys for which we use fine-grained splitpoint search
mdb.RE/0.9
Howard Chu 6 years ago
parent b15149a56b
commit 7375ffc0d4
  1. 2
      libraries/liblmdb/mdb.c

@ -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. * the split so the new page is emptier than the old page.
* This yields better packing during sequential inserts. * This yields better packing during sequential inserts.
*/ */
if (nkeys < 20 || nsize > pmax/16 || newindx >= nkeys) { if (nkeys < 32 || nsize > pmax/16 || newindx >= nkeys) {
/* Find split point */ /* Find split point */
psize = 0; psize = 0;
if (newindx <= split_indx || newindx >= nkeys) { if (newindx <= split_indx || newindx >= nkeys) {

Loading…
Cancel
Save