Learn R Programming

tiledb (version 0.30.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)

Value

path to created config file

Arguments

config

The tiledb_config object

path

The path to config file to be created

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
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