R/redisCLIENT_LIST.R

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