R/redisINCRBYFLOAT.R

#'@title Increment the float value of a key by the given amount
#'@export
redisINCRBYFLOAT <- function( key,  increment, Rc = NULL) {
	if (is.null(Rc)) Rc <- getOption("Rhiredis.connect")
	cmd <- "INCRBYFLOAT"
	redisCommand(Rc, cmd, list(key, increment))
}
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.