EQUAL is the default and does an exact-match lookup. The other four
modes treat the provided key as a probe into the sorted key space and
return the nearest record in the direction specified:
FLOOR — the highest key <= the probe
CEILING — the lowest key >= the probe
LOWER — the highest key strictly < the probe
HIGHER — the lowest key strictly > the probe
Mirrors the server-side proto enum KeyComparisonType.
Key comparison mode for OxiaClient.get.
EQUALis the default and does an exact-match lookup. The other four modes treat the provided key as a probe into the sorted key space and return the nearest record in the direction specified:FLOOR— the highest key<=the probeCEILING— the lowest key>=the probeLOWER— the highest key strictly<the probeHIGHER— the lowest key strictly>the probeMirrors the server-side proto enum
KeyComparisonType.