spott / LMDB.jl

Julia interface to Lightning Memory-Mapped Database (LMDB)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LMDB

Build Status Coverage Status

Lightning Memory-Mapped Database (LMDB) is an ultra-fast, ultra-compact key-value embedded data store developed by Symas for the OpenLDAP Project. It uses memory-mapped files, so it has the read performance of a pure in-memory database while still offering the persistence of standard disk-based databases, and is only limited to the size of the virtual address space. This module provides a Julia interface to LMDB (v0.9.22).

Installation

For julia 0.6 or less, use the package using package manager functions:

julia> Pkg.add("LMDB")

or clone package from this repository and build it.

julia> Pkg.clone("https://github.com/wildart/LMDB.jl.git")
julia> Pkg.build("LMDB")

For julia 0.7+, use the package manager REPL

pkg> add https://github.com/wildart/LMDB.jl.git#v0.1.0

Documentation

For more information, see the Documentation.

About

Julia interface to Lightning Memory-Mapped Database (LMDB)

License:Other


Languages

Language:Julia 100.0%