class documentation
class ComparisonType(enum.IntEnum): (source)
Key comparison mode for the Client.get operation.
| Constant | CEILING |
Lowest key >= the supplied key. |
| Constant | EQUAL |
Exact match on the key. |
| Constant | FLOOR |
Highest key <= the supplied key. |
| Constant | HIGHER |
Lowest key strictly > the supplied key. |
| Constant | LOWER |
Highest key strictly < the supplied key. |