#' Unlock a cache
#' @seealso \code{\link{lockCache}}
#' param f The function to unlock the cache from
#' @export
unlockCache <- function(f) {
if (isCacheLocked(f))
file.remove(paste0(getCacheDir(f), '/locked'))
invisible(NULL)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.