Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use (L)MDB backend instead of HDB #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions volatildap/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ def quote(base, *args):
yield quote('TLSCertificateFile %s', self._tls_certificate_path)
yield quote('TLSCertificateKeyFile %s', self._tls_key_path)

yield quote('moduleload back_hdb')
yield quote('database hdb')
yield quote('moduleload back_mdb')
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just wondering whether mapsize should also be set when using this backend. The default is capacity is 10 MiB (source).

yield quote('database mdb')
yield quote('directory %s', self._datadir)
yield quote('suffix %s', self.suffix)
yield quote('rootdn %s', self.rootdn)
Expand Down