/man/redis-package.Rd

http://github.com/bwlewis/rredis · Unknown · 43 lines · 42 code · 1 blank · 0 comment · 0 complexity · 5efa02a8bf2f5e5e162e4e54dc701a16 MD5 · raw file

  1. \name{redis-package}
  2. \alias{redis-package}
  3. \alias{redis}
  4. \docType{package}
  5. \title{An R client for Redis}
  6. \description{
  7. Redis is a high-performance, in-memory, networked, key/value-like database.
  8. The redis package for R provides a native R language interface
  9. to Redis. The R client can store and retrieve arbitrary serializable R objects
  10. as well as raw data objects like strings and binary blobs from other clients.
  11. Redis supports a number of innovative value types beyond arbitrary
  12. binary data, including sets and lifo/fifo-like lists,
  13. database replication, database persistence, high-performance virtual
  14. memory management and much more. Please see the rredis vignette for
  15. more information and examples on using Redis and R together.
  16. }
  17. \details{
  18. \tabular{ll}{
  19. Package: \tab redis\cr
  20. Type: \tab Package\cr
  21. Version: \tab 0.01\cr
  22. Date: \tab 2010-01-26\cr
  23. License: \tab Apache\cr
  24. LazyLoad: \tab yes\cr
  25. }
  26. }
  27. \author{
  28. B. W. Lewis, with substantial assistance from Pat Sheilds
  29. Maintainer: B. W. Lewis <blewis@illposed.net>
  30. }
  31. \references{
  32. http://redis.io/commands
  33. }
  34. \keyword{ package }
  35. \examples{
  36. \dontrun{
  37. redisConnect()
  38. redisSet('x',runif(5))
  39. redisGet('x')
  40. redisClose()
  41. }
  42. }