R/redisCLIENT_KILL.R

#'@title Kill the connection of a client
#'@export
redisCLIENT_KILL <- function( ip, Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "CLIENT KILL"
	redisCommand(Rc, cmd, list(ip))
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.