Skip to contents

This function is a memoised version of fetch_iquizoo(). It is useful when the same query is called multiple times or you want to cache the result. See memoise::memoise() and fetch_iquizoo() for more details.

Usage

fetch_iquizoo_mem(cache = NULL)

Arguments

cache

The cache to be used. Default cache could be configured by setting the environment variable TARFLOW_CACHE to "disk" or "memory". If set TARFLOW_CACHE to "disk", the cache will be stored in disk at ~/.cache/tarflow.iquizoo with a maximal age of 7 days. If set TARFLOW_CACHE to "memory", the cache will be stored in memory. You can also set cache to a custom cache, see memoise::memoise() for more details.

Value

A memoised version of fetch_iquizoo().

See also

fetch_iquizoo() for the original function.