R/redisSINTERSTORE.R

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