tiledb_config: Creates a 'tiledb_config' object

View source: R/Config.R

tiledb_configR Documentation

Creates a tiledb_config object

Description

Note that for actually setting persistent values, the (altered) config object needs to used to create (or update) the tiledb_ctx object. Similarly, to check whether values are set, one should use the config method of the of the tiledb_ctx object. Examples for this are ctx <- tiledb_ctx(limitTileDBCores()) to use updated configuration values to create a context object, and cfg <- config(ctx) to retrieve it.

Usage

tiledb_config(config = NA_character_)

Arguments

config

(optional) character vector of config parameter names, values

Value

tiledb_config object

Examples


cfg <- tiledb_config()
cfg["sm.tile_cache_size"]

# set tile cache size to custom value
cfg <- tiledb_config(c("sm.tile_cache_size" = "100"))
cfg["sm.tile_cache_size"]


tiledb documentation built on Sept. 27, 2023, 9:06 a.m.