vvish / lmdb-cpp

LMDB C++ bindings
MIT License
6 stars 2 forks source link

Verification of the use-cases corresponding to `MDB_REVERSEKEY` and `MDB_REVERSEDUP` DB flags enabled #6

Open vvish opened 1 year ago

vvish commented 1 year ago

LMDB flags MDB_REVERSEKEY and MDB_REVERSEDUP specify that keys and values are compared (not sorted) in reverse order (from last byte to to the first). Property reversed_flag can be specified to be std::true_type in key or value trait to propagate corresponding flags into lmdb database settings (functionality is already implemented);

It is required to verify the behaviour by integration tests:

vvish commented 1 year ago

Should be done after #5