Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
lmdb-backend: support config for 'lifo' and 'coalesce' envflags.
Browse files Browse the repository at this point in the history
  • Loading branch information
erthink committed Jan 9, 2015
1 parent 829c206 commit 08b4a41
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions servers/slapd/back-mdb/config.c
Expand Up @@ -124,6 +124,12 @@ static slap_verbmasks mdb_envflags[] = {
{ BER_BVC("writemap"), MDB_WRITEMAP },
{ BER_BVC("mapasync"), MDB_MAPASYNC },
{ BER_BVC("nordahead"), MDB_NORDAHEAD },
#ifdef MDB_LIFORECLAIM
{ BER_BVC("lifo"), MDB_LIFORECLAIM },
#endif
#ifdef MDB_COALESCE
{ BER_BVC("coalesce"), MDB_COALESCE },
#endif
{ BER_BVNULL, 0 }
};

Expand Down

0 comments on commit 08b4a41

Please sign in to comment.