You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Calls to cache in R. callCache() is a function wrapper, such that for every real function call, enclosing it with callCache() first checks whether the output of the function call exists in cachePath. If the file does not exist, it executes the function call and saves the output to cachePath. If the file does exist, it reads the file. The filename is generated here and the file naming convention is determined by the function name(s) and arguments provided.