Learn R Programming

httpcache (version 1.0.0)

uncached: Context manager to temporarily turn cache off if it is on

Description

If you don't want to store the response of a GET request in the cache, wrap it in uncached(). It will neither read from nor write to cache. However, uncached will not invalidate cache records, if present.

Usage

uncached(...)

Arguments

...

Things to evaluate with caching off

Value

Whatever ... returns.

Examples

Run this code
# NOT RUN {
uncached(GET("http://httpbin.org/get"))
# }

Run the code above in your browser using DataLab