ITS#8969 tweak mdb_page_split

Bump up number of keys for which we use fine-grained splitpoint search
release-v0.6.1.2
Howard Chu 5 years ago
parent 31bdf7bd11
commit 2a94ec22aa
No known key found for this signature in database
GPG Key ID: FD2A70B44AB11BA7

@ -9641,7 +9641,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 < 20 || nsize > pmax/16 || newindx >= nkeys) {
if (nkeys < 32 || nsize > pmax/16 || newindx >= nkeys) {
/* Find split point */
psize = 0;
if (newindx <= split_indx || newindx >= nkeys) {

Loading…
Cancel
Save