R/redisZINCRBY.R

#'@title Increment the score of a member in a sorted set
#'@export
redisZIncrBy <- function( key,  increment,  member, Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "ZINCRBY"
	redisCommand(Rc, cmd, list(key, increment, member))
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.