/man/redisHGet.Rd
http://github.com/bwlewis/rredis · Unknown · 46 lines · 45 code · 1 blank · 0 comment · 0 complexity · daaa11dc83371c87b6f9d46ffc6f1f2b MD5 · raw file
- \name{redisHGet}
- \alias{redisHGet}
- \title{Retrieve a hased value from Redis.}
- \description{Retrieve a value identified by a key and field
- from the Redis database.
- }
- \usage{
- redisHGet(key, field, ...)
- }
- \arguments{
- \item{key}{
- A key name.
- }
- \item{field}{
- A field name.
- }
- \item{...}{
- Optional additional agruments.
- Specify \code{raw=TRUE} to skip de-serialization of the data.
- }
- }
- \details{
- Redis hash values store values in one or more fields associated with a single
- key name.
- }
- \value{
- The value corresponding to the specified key/field,
- or NULL if the matching key/field hash contained no value
- or if no matching key or field was found.
- }
- \references{
- http://redis.io/commands
- }
- \author{
- B. W. Lewis
- }
- \seealso{
- \code{\link{redisHSet}}
- }
- \examples{
- \dontrun{
- redisHSet('A','x',runif(5))
- redisHGet('A','x')
- }
- }