@oxia-db/client - v0.1.0
    Preparing search index...

    Type Alias ComparisonType

    ComparisonType: typeof ComparisonType[keyof typeof ComparisonType]

    Key comparison mode for OxiaClient.get.

    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.