Load a table from the MORIE cache
Examples
# \donttest{
db <- tempfile(fileext = ".db")
morie_cache_store(
data = data.frame(x = 1:5),
table_name = "demo",
db_path = db
)
morie_cache_load(table_name = "demo", db_path = db)
#> x
#> 1 1
#> 2 2
#> 3 3
#> 4 4
#> 5 5
file.remove(db)
#> [1] TRUE
# }