/man/redisMSet.Rd

http://github.com/bwlewis/rredis · Unknown · 35 lines · 34 code · 1 blank · 0 comment · 0 complexity · f5ff11cecadf7214801439655ab52bda MD5 · raw file

  1. \name{redisMSet}
  2. \alias{redisMSet}
  3. \title{Set one or more key/value pairs in the Redis database.}
  4. \description{Set one or more key/value pairs in the Redis database.}
  5. \usage{
  6. redisMSet(keyvalues, NX = FALSE, ...)
  7. }
  8. \arguments{
  9. \item{keyvalues}{A list of values to set of the form
  10. list(key1=value1, key2=value2, ...)}
  11. \item{NX}{ If NX = TRUE, existing values will not be replaced, otherwise they will be. }
  12. \item{...}{ Optional additional arguments. Specify \code{raw=TRUE} to skip de-serialization of the data.}
  13. }
  14. \details{
  15. Set one or more key/value pairs in the Redis database. Existing
  16. values will be replaced.
  17. }
  18. \value{
  19. ``OK'' upon success.
  20. }
  21. \references{
  22. http://redis.io/commands
  23. }
  24. \author{
  25. B. W. Lewis
  26. }
  27. \seealso{
  28. \code{\link{redisGet}}
  29. }
  30. \examples{
  31. \dontrun{
  32. redisMSet(list(x=5, y=6))
  33. }
  34. }