#'@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))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.