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

    Type Alias ElementAndScore

    Data type which represents sorted sets data for input parameter of ZADD command, including element and its respective score.

    type ElementAndScore = {
        element: GlideString;
        score: Score;
    }
    Index

    Properties

    Properties

    element: GlideString

    The sorted set element name.

    score: Score

    The element score.