R/redisZREVRANGE.R

#'@title Return a range of members in a sorted set, by index, with scores ordered from high to low
#'@export
redisZREVRANGE <- function( key,  start,  stop, Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "ZREVRANGE"
	redisCommand(Rc, cmd, list(key, start, stop))
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.