diff options
Diffstat (limited to 'source4/setup')
-rw-r--r-- | source4/setup/DB_CONFIG | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/source4/setup/DB_CONFIG b/source4/setup/DB_CONFIG index 74bb09d800..f94bf0868b 100644 --- a/source4/setup/DB_CONFIG +++ b/source4/setup/DB_CONFIG @@ -1,6 +1,14 @@ -set_cachesize 0 524288 0 -set_lg_regionmax 104857 -set_lg_max 1048576 -set_lg_bsize 209715 +# set 32MiB, single-segment cache +set_cachesize 0 33554432 1 + +# set transaction log autoremoval; disable if you use them for backups +set_flags DB_LOG_AUTOREMOVE + +# these should be left at default for most installs +set_lg_max 10485760 +set_lg_bsize 2097152 + set_lg_dir ${LDAPDBDIR}/bdb-logs -set_tmp_dir ${LDAPDBDIR}/tmp + +# tmp_dir stuff is not used by OpenLDAP +#set_tmp_dir ${LDAPDBDIR}/tmp |