mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
Tweak ovpage search
Use num*20, chosen from empirical testing
This commit is contained in:
parent
b4ecbd78d9
commit
39ed8bef04
1 changed files with 1 additions and 1 deletions
|
|
@ -1790,7 +1790,7 @@ mdb_page_alloc(MDB_cursor *mc, int num, MDB_page **mp)
|
|||
#else
|
||||
enum { Paranoid = 0, Max_retries = INT_MAX /*infinite*/ };
|
||||
#endif
|
||||
int rc, retry = num;
|
||||
int rc, retry = num * 20;
|
||||
MDB_txn *txn = mc->mc_txn;
|
||||
MDB_env *env = txn->mt_env;
|
||||
pgno_t pgno, *mop = env->me_pghead;
|
||||
|
|
|
|||
Loading…
Reference in a new issue