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

    redis and sorted_set | Mar 5, 2016

    Adds all the specified members with the specified scores to the sorted set stored at key. It is possible to specify multiple score / member pairs. If a specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.

    More »
  • SUNIONSTORE

    redis and set | Mar 4, 2016

    This command is equal to SUNION, but instead of returning the resulting set, it is stored in destination.

    More »
  • SUNION

    redis and set | Mar 4, 2016

    Returns the members of the set resulting from the union of all the given sets.

    More »
  • SSCAN

    redis and set | Mar 4, 2016

    See SCAN for SSCAN documentation.

    More »
  • SREM

    redis and set | Mar 4, 2016

    Remove the specified members from the set stored at key. Specified members that are not a member of this set are ignored. If key does not exist, it is treated as an empty set and this command returns 0.

    More »
  • SRANDMEMBER

    redis and set | Mar 4, 2016

    When called with just the key argument, return a random element from the set value stored at key.

    More »
    • ← Older

    • Newer →

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