Changeset 61ce0b1 for chapter06/gdbm.xml


Ignore:
Timestamp:
06/14/2014 07:51:45 PM (10 years ago)
Author:
DJ Lucas <dj@…>
Branches:
7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
c09761a
Parents:
6f34f43
Message:

Synchronized with LFS-SVN-20140611.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10576 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/gdbm.xml

    r6f34f43 r61ce0b1  
    2424    <title/>
    2525
    26     <para>The GDBM package contains the GNU Database Manager.  This is a disk
    27     file format database which stores key/data-pairs in single files.  The
    28     actual data of any record being stored is indexed by a unique key, which can
    29     be retrieved in less time than if it was stored in a text file.</para>
     26    <para>The GDBM package contains the GNU Database Manager.  It is a library
     27    of database functions that use extensible hashing and work similar to the
     28    standard UNIX dbm.  The library provides primitives for storing key/data
     29    pairs, searching and retrieving the data by its key and deleting a key
     30    along with its data. </para>
    3031
    3132    <segmentedlist>
     
    8384
    8485      <seglistitem>
    85         <seg>testgdbm</seg>
     86        <seg>gdbm_dump, gdbm_load, and gdbmtool</seg>
    8687        <seg>libgdbm.{a,so} and libgdbm_compat.{a,so}</seg>
    8788      </seglistitem>
     
    9394      <?dbhtml list-presentation="table"?>
    9495
    95       <varlistentry id="testgdbm">
    96         <term><command>testgdbm</command></term>
     96      <varlistentry id="gdbm_dump">
     97        <term><command>gdbm_dump</command></term>
     98        <listitem>
     99          <para>Dumps a GDBM database to a file.</para>
     100          <indexterm zone="ch-system-gdbm gdbm_dump">
     101            <primary sortas="b-gdbm_dump">gdbm_dump</primary>
     102          </indexterm>
     103        </listitem>
     104      </varlistentry>
     105
     106      <varlistentry id="gdbm_load">
     107        <term><command>gdbm_load</command></term>
     108        <listitem>
     109          <para>Recreates a GDBM database from a dump file.</para>
     110          <indexterm zone="ch-system-gdbm gdbm_load">
     111            <primary sortas="b-gdbm_load">gdbm_load</primary>
     112          </indexterm>
     113        </listitem>
     114      </varlistentry>
     115
     116      <varlistentry id="gdbmtool">
     117        <term><command>gdbmtool</command></term>
    97118        <listitem>
    98119          <para>Tests and modifies a GDBM database</para>
    99           <indexterm zone="ch-system-gdbm testgdbm">
    100             <primary sortas="b-testgdbm">testgdbm</primary>
     120          <indexterm zone="ch-system-gdbm gdbmtool">
     121            <primary sortas="b-gdbmtool">gdbmtool</primary>
    101122          </indexterm>
    102123        </listitem>
     
    113134      </varlistentry>
    114135
     136      <varlistentry id="libgdbm_compat">
     137        <term><filename class="libraryfile">libgdbm_compat</filename></term>
     138        <listitem>
     139          <para>Compatibility library containing older DBM functions</para>
     140          <indexterm zone="ch-system-gdbm libgdbm_compat">
     141            <primary sortas="c-libgdbm_compat">libgdbm_compat</primary>
     142          </indexterm>
     143        </listitem>
     144      </varlistentry>
     145
    115146    </variablelist>
    116147
Note: See TracChangeset for help on using the changeset viewer.