From cdd7eadce783e550d38a005590ffb2b81c2532a8 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] mdbx: be a bit more precise that mdb_get retrieves data (ITS#8386). Change-Id: I91f6fa0cf7c98ed113ff8d51387376a1c18dc231 --- intro.doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro.doc b/intro.doc index 9fe9c22b..2886c20a 100644 --- a/intro.doc +++ b/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() 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).