Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

cache_gcs

Google Cloud Storage Cache Google Cloud Storage backed cache, for remote caching.


Description

Google Cloud Storage Cache Google Cloud Storage backed cache, for remote caching.

Usage

cache_gcs(
  cache_name = googleCloudStorageR::gcs_get_global_bucket(),
  algo = "sha512",
  compress = FALSE
)

Arguments

cache_name

Bucket name for storing cache files.

algo

The hashing algorithm used for the cache, see digest for available algorithms.

compress

Argument passed to saveRDS. One of FALSE, "gzip", "bzip2" or "xz". Default: FALSE.

Examples

## Not run: 
library(googleCloudStorageR)
# Set GCS credentials.
Sys.setenv("GCS_AUTH_FILE"="<google-service-json>",
           "GCS_DEFAULT_BUCKET"="unique-bucket-name")

gcs <- cache_gcs("unique-bucket-name")
mem_runif <- memoise(runif, cache = gcs)

## End(Not run)

memoise

Memoisation of Functions

v2.0.0
MIT + file LICENSE
Authors
Hadley Wickham [aut], Jim Hester [aut, cre], Winston Chang [aut], Kirill Müller [aut], Daniel Cook [aut], Mark Edmondson [ctb]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.