flush {cymruservices} | R Documentation |
Flush cached results
Description
Within a given R session, it will be highly unlikely that API responses
to calls to Team Cymru services will change if the parameters have
not varied (i.e. you use the same vector of IP addresses again). To
respect the resources that have beeen freely provided, all the API
functions cache their results.
It may be advantageous or necessary to invalidate one or more of these
caches. This function allows for the invalidation of one or more (or all)
caches.
Usage
flush(..., quiet = TRUE)
Arguments
... |
strings naming cached results to flush. Can be any of
" |
quiet |
if |
Note
Invalid cache names will be ignored. If quiet
is FALSE
and flush
was called from an interactive session invalid
cache names will be noted.
Also, you will still need to
force
the reloading of bogon lists if you are within the 4
hour window even if you invalided the memoised cache.
Examples
## Not run:
flush("peer", "origin")
flush()
## End(Not run)