mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 23:19:59 -05:00
Remove "fasttool" option; obsoleted by "slapadd -q"
This commit is contained in:
parent
5b193c218f
commit
86ab73ecd6
2 changed files with 0 additions and 15 deletions
|
|
@ -73,12 +73,6 @@ results if the data comes from a transaction that is later aborted.
|
|||
In this case, the modified data is discarded and a subsequent search
|
||||
will return a different result.
|
||||
.TP
|
||||
.B fasttool
|
||||
Disables transaction logging when using the slapadd/slapindex tools,
|
||||
using the DB_TXN_NOT_DURABLE flag. Does not affect normal slapd operation,
|
||||
but will improve the performance of slapadd/slapindex.
|
||||
See the Berkeley DB reference guide for more details.
|
||||
.TP
|
||||
.B idlcachesize <integer>
|
||||
Specify the size of the in-memory index cache, in index slots. The
|
||||
default is zero. A larger value will speed up frequent searches of
|
||||
|
|
|
|||
|
|
@ -63,15 +63,6 @@ bdb_db_config(
|
|||
} else if ( strcasecmp( argv[0], "dbnosync" ) == 0 ) {
|
||||
bdb->bi_dbenv_xflags |= DB_TXN_NOSYNC;
|
||||
|
||||
/* slapadd/slapindex logging configuration */
|
||||
} else if ( strcasecmp( argv[0], "fasttool" ) == 0 ) {
|
||||
if ( slapMode & SLAP_TOOL_MODE )
|
||||
#if DB_VERSION_FULL >= 0x04030015
|
||||
bdb->bi_dbenv_xflags |= DB_LOG_INMEMORY;
|
||||
#else
|
||||
bdb->bi_dbenv_xflags |= DB_TXN_NOT_DURABLE;
|
||||
#endif
|
||||
|
||||
/* slapindex algorithm tuning */
|
||||
} else if ( strcasecmp( argv[0], "linearindex" ) == 0 ) {
|
||||
bdb->bi_linear_index = 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue