tiledb_config_save {tiledb}R Documentation

Save a tiledb_config object ot a local text file

Description

Save a tiledb_config object ot a local text file

Usage

tiledb_config_save(config, path)

Arguments

config

The tiledb_config object

path

The path to config file to be created

Value

path to created config file

Examples


tmp <- tempfile()
cfg <- tiledb_config(c("sm.tile_cache_size" = "10"))
pth <- tiledb_config_save(cfg, tmp)

cat(readLines(pth), sep = "\n")


[Package tiledb version 0.29.0 Index]