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.
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 »redis and connection | Mar 10, 2016
Select the DB with having the specified zero-based numeric index. New connections always use DB 0.
More »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 »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.
redis and connection | Mar 10, 2016
Returns message
.