研发笔记
  • 归档
  • redis手册
  • 关于
  • ZRANGE

    redis and sorted_set | Mar 5, 2016

    Returns the specified range of elements in the sorted set stored at key. The elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.

    More »
  • ZLEXCOUNT

    redis and sorted_set | Mar 5, 2016

    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.

    More »
  • ZINTERSTORE

    redis and sorted_set | Mar 5, 2016

    Computes the intersection of numkeys sorted sets given by the specified keys, and stores the result in destination. It is mandatory to provide the number of input keys (numkeys) before passing the input keys and the other (optional) arguments.

    More »
  • ZINCRBY

    redis and sorted_set | Mar 5, 2016

    Increments the score of member in the sorted set stored at key by increment. If member does not exist in the sorted set, it is added with increment as its score (as if its previous score was 0.0). If key does not exist, a new sorted set with the specified member as its sole member is created.

    More »
  • ZCOUNT

    redis and sorted_set | Mar 5, 2016

    Returns the number of elements in the sorted set at key with a score between min and max.

    More »
  • ZCARD

    redis and sorted_set | Mar 5, 2016

    Returns the sorted set cardinality (number of elements) of the sorted set stored at key.

    More »
    • ← Older

    • Newer →

  • ©2016 whatrd.com
  • 鄂ICP备16005622号-3