Package org.infinispan.server.resp.commands.sortedset


package org.infinispan.server.resp.commands.sortedset
  • Class
    Description
    Adds all the specified members with the specified scores to the sorted set stored at key.
    Returns the sorted set number of elements.
    Returns the number of elements in the sorted set at key with a score between min and max.
    This command is similar to ZDIFFSTORE, but instead of storing the resulting sorted set, it is returned to the client.
    Computes the difference between the first and all successive input sorted sets and stores the result in destination.
    Increments the score of member in the sorted set stored at key by increment.
    This command is similar to ZINTERSTORE, but instead of storing the resulting sorted set, it is returned to the client.
    This command is similar to ZINTER, but instead of returning the resulting sorted set, it returns just the cardinality of the result.
    Computes the intersection of numkeys sorted sets given by the specified keys, and stores the result in destination.
    When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns the number of elements in the sorted set at key with a value between min and max.
    Pops one or more elements, that are member-score pairs, from the first non-empty sorted set in the provided list of key names.
    Returns the scores associated with the specified members in the sorted set stored at key.
    ZPOPMAX key [count] Removes and returns up to count members with the highest scores in the sorted set stored at key.
    Removes and returns up to count members with the lowest scores in the sorted set stored at key.
    When called with just the key argument, return a random element from the sorted set value stored at key.
    Returns the specified range of elements in the sorted set stored at .
     
    Valid start and stop must start with ( or [, in order to specify if the range item is respectively exclusive or inclusive.
    Returns all the elements in the sorted set at key with a score between min and max (including elements with score equal to min or max).
    This command is like ZRANGE, but stores the result in the destination key.
    Returns the rank of member in the sorted set stored at key, with the scores ordered from high to low.
    Removes the specified members from the sorted set stored at key.
    When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command removes all elements in the sorted set stored at key between the lexicographical range specified by min and max.
    Removes all elements in the sorted set stored at key with rank between start and stop.
    Removes all elements in the sorted set stored at key with a score between min and max (inclusive).
    Returns the specified range of elements in the sorted set stored at key.
    When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns all the elements in the sorted set at key with a value between max and min.
    Returns all the elements in the sorted set at key with a score between max and min (including elements with score equal to max or min).
    Returns the rank of member in the sorted set stored at key, with the scores ordered from high to low.
    See SCAN for ZSCAN documentation.
    Returns the score of member in the sorted set at key.
     
     
     
    This command is similar to ZUNIONSTORE, but instead of storing the resulting sorted set, it is returned to the client.
    Computes the union of numkeys sorted sets given by the specified keys, and stores the result in destination.