Full_Name: Philipp Storz Version: LMDB 0.9.18 OS: linux URL: ftp://ftp.openldap.org/incoming/ Submission from: (NULL) (94.79.184.234)
From ede152281433d1e0bdc12741923c715360c4664a Mon Sep 17 00:00:00 2001
From: Philipp Storz philipp.storz@bareos.com Date: Mon, 14 Mar 2016 10:07:35 +0100 Subject: [PATCH] be a bit more precise that mdb_get retrieves data
--- libraries/liblmdb/intro.doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libraries/liblmdb/intro.doc b/libraries/liblmdb/intro.doc index 9fe9c22..2886c20 100644 --- a/libraries/liblmdb/intro.doc +++ b/libraries/liblmdb/intro.doc @@ -51,7 +51,7 @@ databases should only be opened once, by the first transaction in the process. After the first transaction completes, the database handles can freely be used by all subsequent transactions.
-Within a transaction, #mdb_get() and #mdb_put(% c can store single +Within a transaction, #mdb_get() can retrieve and #mdb_put() can store single key/value pairs if that is all you need to do (but see \ref Cursors below if you want to do more).