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

    redis and sorted_set | Mar 5, 2016

    See SCAN for ZSCAN documentation.

    More »
  • ZREVRANK

    redis and sorted_set | Mar 5, 2016

    Returns the rank of member in the sorted set stored at key, with the scores ordered from high to low. The rank (or index) is 0-based, which means that the member with the highest score has rank 0.

    More »
  • ZREVRANGEBYSCORE

    redis and sorted_set | Mar 5, 2016

    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). In contrary to the default ordering of sorted sets, for this command the elements are considered to be ordered from high to low scores.

    More »
  • ZREVRANGEBYLEX

    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 all the elements in the sorted set at key with a value between max and min.

    More »
  • ZREVRANGE

    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 highest to the lowest score. Descending lexicographical order is used for elements with equal score.

    More »
  • ZREMRANGEBYSCORE

    redis and sorted_set | Mar 5, 2016

    Removes all elements in the sorted set stored at key with a score between min and max (inclusive).

    More »
    • ← Older

    • Newer →

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