All Documentation
Data Structures
Stores
Connections
Other Modules
defines a dummy class
- class python.gink.impl.dummy.Dummy
a placeholder class
A bunch of helper functions for interacting with lmdb databases.
- python.gink.impl.lmdb_utilities.count_items(cursor) int
Counts the number of items in the table that the cursor is associated with.
Primarily intended to be a debugging utility.
- python.gink.impl.lmdb_utilities.to_last_with_prefix(cursor, prefix, suffix=None, boundary=None) bytes | None
Positions cursor on the last entry with prefix, optionally before boundary or prefix+suffix
Returns the key under the cursor when something is found, None otherwise. If no match is found, the new position of the cursor is undefined.