R/redisHGET.R

#'@title Get the value of a hash field
#'@export
redisHGet <- function( key,  field, Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "HGET"
	redisCommand(Rc, cmd, list(key, field))
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.