Forget past results. Resets the cache of a memoised function.
Forget past results. Resets the cache of a memoised function.
forget(f)
f |
memoised function |
memX <- memoise(function() { Sys.sleep(1); runif(1) })
# The forget() function
system.time(print(memX()))
system.time(print(memX()))
forget(memX)
system.time(print(memX()))Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.