cache_s3: Amazon Web Services S3 Cache Amazon Web Services S3 backed...

View source: R/cache_s3.R

cache_s3R Documentation

Amazon Web Services S3 Cache Amazon Web Services S3 backed cache, for remote caching.

Description

Amazon Web Services S3 Cache Amazon Web Services S3 backed cache, for remote caching.

Usage

cache_s3(cache_name, 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: 
# Set AWS credentials.
Sys.setenv("AWS_ACCESS_KEY_ID" = "<access key>",
           "AWS_SECRET_ACCESS_KEY" = "<access secret>")

# Set up a unique bucket name.
s3 <- cache_s3("unique-bucket-name")
mem_runif <- memoise(runif, cache = s3)

## End(Not run)



r-lib/memoise documentation built on Jan. 17, 2024, 3:24 p.m.