We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3bb266 commit 6cec06cCopy full SHA for 6cec06c
src/main/java/org/lmdbjava/CursorIterator.java
@@ -39,6 +39,12 @@
39
* <p>
40
* An instance will create and close its own cursor.
41
*
42
+ * <p>
43
+ * If iterating over keys stored with {@link DbiFlags#MDB_INTEGERKEY} you must
44
+ * provide a Java iterator when constructing the {@link Dbi} or this class. It
45
+ * is more efficient to use an iterator only with this class, as this avoids
46
+ * LMDB calling back into Java code to perform the integer key comparison.
47
+ *
48
* @param <T> buffer type
49
*/
50
public final class CursorIterator<T> implements
0 commit comments