redis and transactions | Mar 12, 2016
Flushes all previously queued commands in a transaction and restores the connection state to normal.
More »redis and server | Mar 11, 2016
The TIME
command returns the current server time as a two items lists: a Unix
timestamp and the amount of microseconds already elapsed in the current second.
Basically the interface is very similar to the one of the gettimeofday
system
call.
redis and server | Mar 11, 2016
@examples
More »redis and server | Mar 11, 2016
This command is used in order to read and reset the Redis slow queries log.
More »redis and server | Mar 11, 2016
The SLAVEOF
command can change the replication settings of a slave on the fly.
If a Redis server is already acting as slave, the command SLAVEOF
NO ONE will
turn off the replication, turning the Redis server into a MASTER.
In the proper form SLAVEOF
hostname port will make the server a slave of
another server listening at the specified hostname and port.
redis and server | Mar 11, 2016
The command behavior is the following:
More »