README.md

DataCache: R Package for Managing Data Caches

Build Status CRAN_Status_Badge

The latest development version can be installed using the devtools package:

devtools::install_github('jbryer/DataCache')

Example

This example will load weather data.

library('weatherData')
library('DataCache')

loadWeatherData <- function(station_id='ALB') {
    return(list(weather=getDetailedWeather(station_id, Sys.Date())))
}

cacheData(loadWeatherData)
cache.info()
cache.info(stale=c('2mins'=nMinutes(2)))

Wait two minutes so the cache becomes stale.

Sys.sleep(120)
cacheData(loadWeatherData, nMinutes(2))


jbryer/DataCache documentation built on May 18, 2019, 7 p.m.