/man/redisHGet.Rd

http://github.com/bwlewis/rredis · Unknown · 46 lines · 45 code · 1 blank · 0 comment · 0 complexity · daaa11dc83371c87b6f9d46ffc6f1f2b MD5 · raw file

  1. \name{redisHGet}
  2. \alias{redisHGet}
  3. \title{Retrieve a hased value from Redis.}
  4. \description{Retrieve a value identified by a key and field
  5. from the Redis database.
  6. }
  7. \usage{
  8. redisHGet(key, field, ...)
  9. }
  10. \arguments{
  11. \item{key}{
  12. A key name.
  13. }
  14. \item{field}{
  15. A field name.
  16. }
  17. \item{...}{
  18. Optional additional agruments.
  19. Specify \code{raw=TRUE} to skip de-serialization of the data.
  20. }
  21. }
  22. \details{
  23. Redis hash values store values in one or more fields associated with a single
  24. key name.
  25. }
  26. \value{
  27. The value corresponding to the specified key/field,
  28. or NULL if the matching key/field hash contained no value
  29. or if no matching key or field was found.
  30. }
  31. \references{
  32. http://redis.io/commands
  33. }
  34. \author{
  35. B. W. Lewis
  36. }
  37. \seealso{
  38. \code{\link{redisHSet}}
  39. }
  40. \examples{
  41. \dontrun{
  42. redisHSet('A','x',runif(5))
  43. redisHGet('A','x')
  44. }
  45. }