R/redisZRANGE.R

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