Skip to content

comron/rmemcached

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rmemcached

Installation

This is how I installed it, its ugly for now, but it works.

R CMD INSTALL ./rmemcached

You might need to provide the path to libmemcached like so:

R CMD INSTALL ./rmemcached --configure-args=--with-libmemcached-path=/usr/local/

Examples

library(rmemcached)
server <- cache.connect("127.0.0.1", 11211)
cache.set(server, "foo", "1000")
cache.set(server, "bar", "2000")
cache.get(server, "foo")
cache.get(server, "baz")

About

An R interface to memcached

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published