R/redisZRANGEBYSCORE.R

#'@title Return a range of members in a sorted set, by score
#'@export
redisZRangeByScore <- function( key,  min,  max, Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "ZRANGEBYSCORE"
	redisCommand(Rc, cmd, list(key, min, max))
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.