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

    redis and set | Mar 4, 2016

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

    More »
  • SDIFF

    redis and set | Mar 4, 2016

    Returns the members of the set resulting from the difference between the first set and all the successive sets.

    More »
  • SCARD

    redis and set | Mar 4, 2016

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

    More »
  • SADD

    redis and set | Mar 4, 2016

    Add the specified members to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.

    More »
  • RPUSHX

    redis and list | Mar 3, 2016

    Inserts value at the tail of the list stored at key, only if key already exists and holds a list. In contrary to RPUSH, no operation will be performed when key does not yet exist.

    More »
  • RPUSH

    redis and list | Mar 3, 2016

    Insert all the specified values at the tail of the list stored at key. If key does not exist, it is created as empty list before performing the push operation. When key holds a value that is not a list, an error is returned.

    More »
    • ← Older

    • Newer →

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