source: server/databases/lmdb.xml@ cf905e0

11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since cf905e0 was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 18 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

  • Property mode set to 100644
File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY lmdb-download-http "https://github.com/LMDB/lmdb/archive/LMDB_&lmdb-version;.tar.gz">
8 <!ENTITY lmdb-download-ftp " ">
9 <!ENTITY lmdb-md5sum "84cc7cac4bf15486536560f171297a49">
10 <!ENTITY lmdb-size "144 KB">
11 <!ENTITY lmdb-buildsize "6.1 MB">
12 <!ENTITY lmdb-time "less than 0.1 SBU">
13]>
14
15<sect1 id="lmdb" xreflabel="lmdb-&lmdb-version;">
16 <?dbhtml filename="lmdb.html"?>
17
18
19 <title>lmdb-&lmdb-version;</title>
20
21 <indexterm zone="lmdb">
22 <primary sortas="a-lmdb">lmdb</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to lmdb</title>
27
28 <para>
29 The <application>lmdb</application> package is a fast, compact, key-value
30 embedded data store. It uses memory-mapped files, so it has the read
31 performance of a pure in-memory database while still offering the
32 persistence of standard disk-based databases, and is only limited to the
33 size of the virtual address space
34 </para>
35
36 &lfs112_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&lmdb-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&lmdb-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &lmdb-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &lmdb-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &lmdb-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &lmdb-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <para condition="html" role="usernotes">
73 User Notes: <ulink url="&blfs-wiki;/lmdb"/>
74 </para>
75 </sect2>
76
77 <sect2 role="installation">
78 <title>Installation of lmdb</title>
79
80 <note>
81 <para>
82 This package extracts to lmdb-LMDB_&lmdb-version;.
83 </para>
84 </note>
85
86 <para>
87 Install <application>lmdb</application> by running the following
88 commands:
89 </para>
90
91<screen><userinput>cd libraries/liblmdb &amp;&amp;
92make &amp;&amp;
93sed -i 's| liblmdb.a||' Makefile</userinput></screen>
94
95 <para>
96 This package does not come with a test suite.
97 </para>
98
99 <para>
100 Now, as the <systemitem class="username">root</systemitem> user:
101 </para>
102
103<screen role="root"><userinput>make prefix=/usr install</userinput></screen>
104
105 </sect2>
106
107 <sect2 role="commands">
108 <title>Command Explanations</title>
109
110 <!--para>
111 <command>sed ... prefix ... Makefile</command>: The Makefile creates the
112 man pages directory during install if it is not present.
113 This fixes the directory location.
114 </para-->
115
116 <para>
117 <command>sed ... liblmdb.a ... Makefile</command>: The package executables
118 use a static library so it must be created. This command suppresses installation
119 of the static library.
120 </para>
121
122 </sect2>
123
124 <sect2 role="content">
125 <title>Contents</title>
126
127 <segmentedlist>
128 <segtitle>Installed Program</segtitle>
129 <segtitle>Installed Library</segtitle>
130 <segtitle>Installed Directories</segtitle>
131
132 <seglistitem>
133 <seg>
134 mdb_copy, mdb_dump, mdb_load, and mdb_stat
135 </seg>
136 <seg>
137 liblmdb.so
138 </seg>
139 <seg>
140 None
141 </seg>
142 </seglistitem>
143 </segmentedlist>
144
145<!-- TODO
146 <variablelist>
147 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
148 <?dbfo list-presentation="list"?>
149 <?dbhtml list-presentation="table"?>
150
151 <varlistentry id="lmdb_copy">
152 <term><command>lmdb_copy</command></term>
153 <listitem>
154 <para>
155 A tool to copy an LMDB environment.
156 </para>
157 <indexterm zone="lmdb lmdb_copy">
158 <primary sortas="b-lmdb_copy">lmdb_copy</primary>
159 </indexterm>
160 </listitem>
161 </varlistentry>
162 </variablelist>
163-->
164 </sect2>
165
166</sect1>
Note: See TracBrowser for help on using the repository browser.