/man/redisMSet.Rd
http://github.com/bwlewis/rredis · Unknown · 35 lines · 34 code · 1 blank · 0 comment · 0 complexity · f5ff11cecadf7214801439655ab52bda MD5 · raw file
- \name{redisMSet}
- \alias{redisMSet}
- \title{Set one or more key/value pairs in the Redis database.}
- \description{Set one or more key/value pairs in the Redis database.}
- \usage{
- redisMSet(keyvalues, NX = FALSE, ...)
- }
- \arguments{
- \item{keyvalues}{A list of values to set of the form
- list(key1=value1, key2=value2, ...)}
- \item{NX}{ If NX = TRUE, existing values will not be replaced, otherwise they will be. }
- \item{...}{ Optional additional arguments. Specify \code{raw=TRUE} to skip de-serialization of the data.}
- }
- \details{
- Set one or more key/value pairs in the Redis database. Existing
- values will be replaced.
- }
- \value{
- ``OK'' upon success.
- }
- \references{
- http://redis.io/commands
- }
- \author{
- B. W. Lewis
- }
- \seealso{
- \code{\link{redisGet}}
- }
- \examples{
- \dontrun{
- redisMSet(list(x=5, y=6))
- }
- }