R/redisCLIENT_GETNAME.R

#'@title Get the current connection name
#'@export
redisCLIENT_GETNAME <- function(Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "CLIENT GETNAME"
	redisCommand(Rc, cmd)
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.