@valkey/valkey-glide
    Preparing search index...

    Type Alias GeoSearchResultOptions

    GeoSearchResultOptions: GeoSearchCommonResultOptions & {
        withCoord?: boolean;
        withDist?: boolean;
        withHash?: boolean;
    }

    Optional parameters for geosearch command which defines what should be included in the search results and how results should be ordered and limited.

    Type Declaration

    • OptionalwithCoord?: boolean

      Include the coordinate of the returned items.

    • OptionalwithDist?: boolean

      Include the distance of the returned items from the specified center point. The distance is returned in the same unit as specified for the searchBy argument.

    • OptionalwithHash?: boolean

      Include the geohash of the returned items.