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

    Interface LPosOptions

    Optional arguments to LPOS command.

    See https://valkey.io/commands/lpos/ for more details.

    interface LPosOptions {
        count?: number;
        maxLength?: number;
        rank?: number;
    }
    Index

    Properties

    count?: number

    The specific number of matching indices from a list.

    maxLength?: number

    The maximum number of comparisons to make between the element and the items in the list.

    rank?: number

    The rank of the match to return.