Nothing
#' @title Store Large Objects
#'
#' @description
#' Store large objects to disk and return a reference to the object.
#'
#' @param obj (`any`)\cr
#' Object to store.
#' @param path (`character(1)`)\cr
#' Path to store the object.
#'
#' @return `list()` of class `"rush_large_object"` with the name and path of the stored object.
#' @export
#' @examples
#' obj = list(a = 1, b = 2)
#' rush_large_object = store_large_object(obj, tempdir())
store_large_object = function(obj, path) {
assert_string(path)
name = deparse(substitute(obj))
id = uuid::UUIDgenerate()
path = file.path(path, paste0(id, ".rds"))
saveRDS(obj, path)
res = list(name = name, id = id, path = path)
set_class(res, "rush_large_object")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.