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

    redis and server | Mar 11, 2016

    Save the DB in background. The OK code is immediately returned. Redis forks, the parent continues to serve the clients, the child saves the DB on disk then exits. A client may be able to check if the operation succeeded using the LASTSAVE command.

    More »
  • BGREWRITEAOF

    redis and server | Mar 11, 2016

    Instruct Redis to start an Append Only File rewrite process. The rewrite will create a small optimized version of the current Append Only File.

    More »
  • SELECT

    redis and connection | Mar 10, 2016

    Select the DB with having the specified zero-based numeric index. New connections always use DB 0.

    More »
  • QUIT

    redis and connection | Mar 10, 2016

    Ask the server to close the connection. The connection is closed as soon as all pending replies have been written to the client.

    More »
  • PING

    redis and connection | Mar 10, 2016

    Returns PONG if no argument is provided, otherwise return a copy of the argument as a bulk. This command is often used to test if a connection is still alive, or to measure latency.

    More »
  • ECHO

    redis and connection | Mar 10, 2016

    Returns message.

    More »
    • ← Older

    • Newer →

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