Learn R Programming

rredis (version 1.7.0)

rredis-package: Redis interface package.

Description

The rredis package provides a native R interface to Redis. Redis is an in memory key/value database with many innovative features, see http://redis.io for details. It supports data persistence, networked client/server operation, command pipelining, structured value types, data expiration, multicast-like publish/subscribe, and it's very fast.

Arguments

Details

Package options:
  • options('redis:num'=TRUE) Set this option to TRUE to return Redis : messages as numeric values. This was the default behavior of the rredis package for all versions prior to 1.6.9. For versions of the R package later than that, redis : messages are returned as raw Redis string values to correspond to the data types stored in Redis. Set this option to revert to the old behavior.

    Redis commands affected by this option importantly include the increment and decrement operations.