Check if given items are present in cache
Usage
tw_check_cached_items(
id,
language = tidywikidatar::tw_get_language(),
cache_connection = NULL,
disconnect_db = TRUE
)Arguments
- id
A character vector, must start with Q, e.g. "Q180099" for the anthropologist Margaret Mead. Can also be a data frame of one row, typically generated with
tw_search()or a combination oftw_search()andtw_filter_first().- language
Defaults to language set with
tw_set_language(); if not set, "en". Use "all_available" to keep all languages. For available language values, see the dedicated Wikimedia page.- cache_connection
Defaults to
NULL. IfNULL, and caching is enabled,tidywikidatarwill use a local sqlite database. A custom connection to other databases can be given (see vignettecachingfor details).- disconnect_db
Defaults to
TRUE. IfFALSE, leaves the connection to cache open.
Value
A character vector with IDs of items present in cache. If no item
found in cache, returns NULL.
Examples
if (interactive()) {
tw_set_cache_folder(path = tempdir())
tw_enable_cache()
tw_create_cache_folder(ask = FALSE)
# add three items to local cache
invisible(tw_get(id = "Q180099", language = "en"))
invisible(tw_get(id = "Q228822", language = "en"))
invisible(tw_get(id = "Q184992", language = "en"))
# check if these other items are in cache
items_in_cache <- tw_check_cached_items(
id = c(
"Q180099",
"Q228822",
"Q76857"
),
language = "en"
)
# it should return only the two items from the current list of id
# but not other item already in cache
items_in_cache
}