Learn R Programming

tiledb (version 0.9.2)

tiledb_config_save: 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

Run this code
# NOT RUN {
tmp <- tempfile()
cfg <- tiledb_config(c("sm.tile_cache_size" = "10"))
pth <- tiledb_config_save(cfg, tmp)

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

# }

Run the code above in your browser using DataLab