source: branches/samba-3.5.x/source3/lib/ldb/mainpage.dox

Last change on this file was 414, checked in by Herwig Bauernfeind, 15 years ago

Samba 3.5.0: Initial import

File size: 2.7 KB
Line 
1/**
2
3\mainpage ldb
4
5\section Overview
6
7ldb is a LDAP-like embedded database. It is not at all LDAP standards
8compliant, so if you want a standards compliant database then please
9see the excellent <a href="http://www.openldap.org/">OpenLDAP</a>
10project.<p>
11
12What ldb does is provide a fast database with an LDAP-like API
13designed to be used within an application. In some ways it can be seen
14as a intermediate solution between key-value pair databases and a real
15LDAP database.<p>
16
17ldb is the database engine used in Samba4.
18
19\section Features
20
21The main features that separate ldb from other solutions are:
22 - Safe multi-reader, multi-writer, using byte range locking
23 - LDAP-like API
24 - fast operation
25 - choice of local tdb, local sqlite3 or remote LDAP backends
26 - integration with <a href="http://talloc.samba.org">talloc</a>
27 - schema-less operation, for trivial setup
28 - modules for extensions (such as schema support)
29 - easy setup of indexes and attribute properties
30 - ldbedit tool for database editing (reminiscent of 'vipw')
31 - ldif for import/export
32
33\section Documentation
34
35ldb has limited programmer and administrator documentation:
36 - a list of <a href="globals_func.html">functions</a>
37 - a list of <a href="examples.html">examples</a>
38 - a list of <a href="annotated.html">data structures</a>
39 - a list of <a href="globals_defs.html">constants</a>
40
41If you need more information than is presented in this document, you
42may wish to look at the source code, especially the source code in the
43<a href="http://samba.org/ftp/unpacked/samba4/source/lib/ldb/tools/">tools directory</a>.
44
45ldb makes use of the LDAP Data Interchange Format (LDIF), which is
46documented in <a href="http://www.ietf.org/rfc/rfc2849.txt">RFC
472849</a>.
48
49\section Support
50
51ldb does not currently have its own mailing list or bug tracking
52system. For now, please use the <a
53href="https://lists.samba.org/mailman/listinfo/samba-technical">samba-technical</a>
54mailing list, and the <a href="http://bugzilla.samba.org/">Samba
55bugzilla</a> bug tracking system.
56
57\section Download
58
59You can download the latest release either via rsync or anonymous
60svn. To fetch via svn use the following commands:
61
62\verbatim
63 svn co svn://svnanon.samba.org/samba/branches/SAMBA_4_0/source/lib/ldb ldb
64 svn co svn://svnanon.samba.org/samba/branches/SAMBA_4_0/source/lib/tdb tdb
65 svn co svn://svnanon.samba.org/samba/branches/SAMBA_4_0/source/lib/talloc talloc
66\endverbatim
67
68To fetch via rsync use these commands:
69
70\verbatim
71 rsync -Pavz samba.org::ftp/unpacked/samba4/source/lib/ldb .
72 rsync -Pavz samba.org::ftp/unpacked/samba4/source/lib/tdb .
73 rsync -Pavz samba.org::ftp/unpacked/samba4/source/lib/talloc .
74\endverbatim
75
76\section Credits
77
78ldb is another product of the prolific <a href="http://samba.org/~tridge/">Andrew Tridgell</a>.
79
80*/
Note: See TracBrowser for help on using the repository browser.