Construct a unique cache key for a request
This function encapsulates the logic of making a cache key, allowing other code or libraries to access the HTTP cache programmatically.
buildCacheKey(url, query = NULL, body = NULL, extras = c())
url
: character request URLquery
: Optional query parameters for the requestbody
: Optional request bodyextras
: character Optional additional annotations to include in the cache key.Character value, starting with url
and including hashed query and body values if provided, to be used as the cache key for this request.
Useful links