R/redisSDIFFSTORE.R

#'@title Subtract multiple sets and store the resulting set in a key
#'@export
redisSDiffStore <- function( destination,  key, Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "SDIFFSTORE"
	redisCommand(Rc, cmd, list(destination, key))
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.