Learn R Programming

rredis (version 1.6.9)

redis-package: An R client for Redis

Description

Redis is a high-performance, in-memory, networked, key/value-like database. The redis package for R provides a native R language interface to Redis. The R client can store and retrieve arbitrary serializable R objects as well as raw data objects like strings and binary blobs from other clients. Redis supports a number of innovative value types beyond arbitrary binary data, including sets and lifo/fifo-like lists, database replication, database persistence, high-performance virtual memory management and much more. Please see the rredis vignette for more information and examples on using Redis and R together.

Arguments

Details

ll{ Package: redis Type: Package Version: 0.01 Date: 2010-01-26 License: Apache LazyLoad: yes }

References

http://redis.io/commands

Examples

Run this code
redisConnect()
redisSet('x',runif(5))
redisGet('x')
redisClose()

Run the code above in your browser using DataLab