R/io.R
grapes-cache_matrix-grapes.Rd
Tries reading a cached matrix result from the filename on the right side. If the file is missing, generate the matrix using the function call on the left side and write the result to the file. If "tgutil.cache" option is FALSE, right side would be always recumputed.
call %cache_matrix% fname
function call
filename
temp_file <- tempfile(fileext = ".tsv")
calc_mtcars_cyl <- function(cyl) {
message("calculating")
as.matrix(mtcars[mtcars$cyl == cyl, ])
}
# Call "calc_mtcars_cyl" function
res1 <- calc_mtcars_cyl(6) %cache_matrix% temp_file
#> calculating
# Load cached file
res2 <- calc_mtcars_cyl(6) %cache_matrix% temp_file
#> Using cached matrix from '/tmp/RtmpISImil/file167765e64e8a0.tsv'