Ensure that connection to cache is disconnected consistently
Source:R/tw_caching.R
tw_disconnect_from_cache.Rd
Ensure that connection to cache is disconnected consistently
Usage
tw_disconnect_from_cache(
cache = NULL,
cache_connection = NULL,
disconnect_db = TRUE,
language = tidywikidatar::tw_get_language()
)
Arguments
- cache
Defaults to NULL. If given, it should be given either TRUE or FALSE. Typically set with
tw_enable_cache()
ortw_disable_cache()
.- cache_connection
Defaults to NULL. If NULL, and caching is enabled,
tidywikidatar
will use a local sqlite database. A custom connection to other databases can be given (see vignettecaching
for details).- disconnect_db
Defaults to TRUE. If FALSE, leaves the connection to cache open.
- 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 https://www.wikidata.org/wiki/Help:Wikimedia_language_codes/lists/all
Examples
if (interactive()) {
tw_get(
id = c("Q180099"),
language = "en"
)
tw_disconnect_from_cache()
}