Basics of LMDB with C

LMDB is a neat embedded key value database. It stands for Lightning Memory-Mapped Database. It is useful for small applications where you don't have to worry about schemas or relations. Think of the usecase where you might use a hashmap but you want the state to be persistent. LMDB is written in C and is even able to be linked with pkgconfig. A lot of times people use a wrapper, but I wanted to see what it was like to use this directly with C. It isn't difficult, but I found basic tutorials hard to come by. So in this post I'll show you to store and retrieve string key value pairs.

Installation

The library has been around for a while, so it is easy to install. With debian I simply ran:

apt install liblmdb-dev

In my meson.build I set the dependency like so:

lmdb = dependency('lmdb')

Add the header to your source file like so:

#include "lmdb.h"

Usage

LMDB has its own terminology, but if you are familiar with databases it shouldn't be that foreign. BoltDB which is written in Go was originally supposed to be a port of LMDB and I found its model to help me understand how the LMDB API works.

Environment

The first thing that is setup is the environment. I find it easier to think about the environment as the "database", but LMDB has a specific use for the word database which we will see later. When we initialize the environment it will initialize the folder where the data is stored. Emphasis on folder not file. Upon initialization, in the folder there will be a lock.mdb and a data.mdb file. LMDB uses these two files to persist data. The way to initialize the environment it looks like this:

MDB_env *env;
mdb_env_create(&env);

mdb_env_open(env, "./testdb", 0, 0664);

The more important call was mdb_env_open here we pass the environment struct, the path to the folder, 0 to specify READ and WRITe, and the folder permissions mode. Which you will recognize from UNIX chmod calls.

Once we open the environment we can start carrying out transactions to read and write data.

Put

To put key pairs into the database we use mdb_put inside of a transaction.

Lets start by creating a transaction.

MDB_txn *txn;
mdb_txn_begin(env, NULL, 0, &txn);

Here we use the environment struct from earlier, we pass NULL for the parent transaction (it is possible to have nested transaactions). 0 for READ & WRITE, and then the transaction.

The next thing do is open the database. Which I think is better understood as "table" or as BoltDB calls them "buckets". We open up access to the database inside of a transaction.

MDB_dbi dbi;
mdb_open(txn, NULL, 0, &dbi);

The parameters we used are similar to the transaction, except the NULL stands for use default database. If we specified a name it would open up a specific database, which I find easier to think about as a table. In this tutorial I won't be showing how to do that. You can find more info on that in the official documentation.

After all that ceremony we are finally ready to put the key pair in. We begin by setting up our key and value which are both MDB_val data types.

char *skey = "foo";
char *sval = "bar";

MDB_val key, val;

// Use +1 to include the \0 character
key.mv_size = strlen(skey) + 1;
key.mv_data = skey;

val.mv_size = strlen(sval) + 1;
val.mv_data = sval;

Once the key and value are setup we put them in the database.

mdb_put(txn, dbi, &key, &val, 0);

Make sure to commit the transaction which will also free the transaction and database struct memory.

mdb_txn_commit(txn);

Get

Once we stored the value we want to be able to get it. This works similarly to put in that we initialize a transaction and database.

MDB_txn *txn;
MDB_dbi dbi;

mdb_txn_beginn(env, NULL, MDB_RDONLY, &txn);
mdb_open(txn, NULL, 0, &dbi);

Now here we only have to setup the key:

char *skey = "foo";
MDB_val key;
key.mv_size = strlen(skey) + 1;
key.mv_data = skey;

To finally get the value:

MDB_val val;
mdb_get(txn, dbi, &key, &val);

With the data being in the mv_data field:

printf("%s\n", val.mv_data);

Once we are done make sure to end the transaction:

mdb_txn_abort(txn);

Cursor

Now that we have covered the basics the last we are going to go over is cursors. Here we will see how to list all the key pairs in the database.

By this point you know the drill. Setup a transaction and a database.

MDB_txn *txn;
MDB_dbi dbi;

mdb_txn_begin(env, NULL, MDB_RDONLY, &txn);
mdb_open(txn, NULL, 0, &dbi):

One thing that is different is we open up our cursor:

MDB_cursor *cursor;
mdb_cursor_open(txn, dbi, &cursor);

We also need to initialize the empty key and value pair.

MDB_val key, data;

Then we will iterate through the database with the cursor:

int rc;
while ((rc = mdb_cursor_get(cursor, &key, &data, MDB_NEXT)) == 0) {
    printf("key: %s, value: %s\n", (char *)key.mv_data, (char *)data.mv_data);
}

Finally we want to close the cursor and the transaction:

mdb_cursor_close(cursor);
mdb_txn_abort(txn);

Final Remarks

One thing I failed to show was how each call prefixed with mdb_ returns an error code.

To get a meaningful error we can use this:

fprintf(stderr, "mdb_txn_commit: (%d) %s\n", rc, mdb_strerror(rc));

For reference I have an example repo here.

Hopefully this helps on your journey to use LMDB in your cool projects!

Content for this site is CC-BY-SA.

More Posts