Sets a config parameter value

# S4 method for tiledb_config
[(x, i, j) <- value

Arguments

x

tiledb_config object

i

parameter key string

j

parameter key string

value

value to set, will be converted into a stringa

Value

updated tiledb_config object

Examples

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