• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

fallback/H25-Jan-2017-1,0351,015

lib/H25-Jan-2017-1,604459

t/H25-Jan-2017-779631

ChangesH A D25-Jan-20172.7 KiB7763

LICENSEH A D25-Jan-20178.8 KiB208154

LMDB.xsH A D25-Jan-201725.1 KiB1,1791,026

MANIFESTH A D25-Jan-2017377 2019

META.jsonH A D25-Jan-20171.3 KiB5655

META.ymlH A D25-Jan-2017697 2827

Makefile.PLH A D23-Feb-20166.1 KiB204184

READMEH A D25-Jan-20172.2 KiB7648

TODOH A D24-Oct-2014313 1410

ppport.hH A D23-Oct-2014176 KiB7,2593,105

typemapH A D24-Oct-20141.9 KiB7671

README

1LMDB_File version 0.12
2======================
3
4LMDB_File is a Perl wrapper around the OpenLDAP's LMDB (Lightning
5Memory-Mapped Database) C library.
6
7LMDB is an ultra-fast, ultra-compact key-value data store developed
8by Symas for the OpenLDAP Project. See http://symas.com/mdb/ for details.
9
10LMDB_File provides full access to the complete C API, a thin Perl wrapper
11with an Object-Oriented interface and a simple Perl's tie interface
12compatible with others DBMs.
13
14PREREQUISITES
15
16Right now LMDB needs a 64bits platform.
17
18 Before you can build LMDB_File you need to have the following installed
19on your system:
20
21    * Perl 5.10.0 or greater linked with pthreads.
22      See https://rt.perl.org/Public/Bug/Display.html?id=122906
23
24    * A working C compiler.
25
26    * LMDB Version 0.9.17 or greater
27      (previous versions may work but will miss some features)
28
29      Some Linux distributions are now including it:
30
31        * Fedora 20+
32
33            `yum install lmdb-devel`
34
35        * Ubuntu
36
37            `apt-get install liblmdb-dev`
38
39      If the library and its header file isn't found installed in
40      your system, Makefile.PL will try to use Doug Hoyte's Alien::LMDB module
41      if available.
42
43      Otherwise, if you getting this from GitHub, a submodule is included
44      in 'liblmdb' that you can use, please check git documentation to
45      populate the directory.
46
47    * To run the test harness for this module:
48      - You must make sure that the directory where you have untarred this
49      module is NOT a network drive, e.g. NFS or AFS.
50      - You need the Test::Exception module installed.
51
52INSTALLATION
53
54To install this module type the following:
55
56   perl Makefile.PL
57   make
58   make test
59   make install
60
61*** WARNING ***
62This is an early release to allow the interested people the testing and
63discussion of the module: there is some missing features and you should
64be aware that the API isn't in stone yet. See TODO
65
66
67COPYRIGHT AND LICENCE
68
69Copyright (C) 2013-2017 by Salvador Ortiz Garcia
70
71This module is free software; you can redistribute it and/or modify
72it under the same terms as Perl itself, either Perl version 5.10.1 or,
73at your option, any later version of Perl 5 you may have available.
74
75
76