Enjoying life
  • 归档
  • redis手册
  • 关于
  • EXPIREAT

    redis and generic | Mar 9, 2016

    EXPIREAT has the same effect and semantic as EXPIRE, but instead of specifying the number of seconds representing the TTL (time to live), it takes an absolute Unix timestamp (seconds since January 1, 1970).

    More »
  • EXPIRE

    redis and generic | Mar 9, 2016

    Set a timeout on key. After the timeout has expired, the key will automatically be deleted. A key with an associated timeout is often said to be volatile in Redis terminology.

    More »
  • EXISTS

    redis and generic | Mar 9, 2016

    Returns if key exists.

    More »
  • DUMP

    redis and generic | Mar 9, 2016

    Serialize the value stored at key in a Redis-specific format and return it to the user. The returned value can be synthesized back into a Redis key using the RESTORE command.

    More »
  • DEL

    redis and generic | Mar 9, 2016

    Removes the specified keys. A key is ignored if it does not exist.

    More »
  • PFMERGE

    redis and hyperloglog | Mar 8, 2016

    Merge multiple HyperLogLog values into an unique value that will approximate the cardinality of the union of the observed Sets of the source HyperLogLog structures.

    More »
    • ← Older

    • Newer →

  • ©2016 jodg.net
  • 鄂ICP备16005622号-2