Learn R Programming

tiledb (version 0.30.2)

tiledb_stats_dump: Dumps internal TileDB statistics to file or stdout

Description

Dumps internal TileDB statistics to file or stdout

Usage

tiledb_stats_dump(path)

Arguments

path

Character variable with path to stats file; if the empty string is passed then the result is displayed on stdout.

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
pth <- tempfile()
tiledb_stats_dump(pth)
cat(readLines(pth)[1:10], sep = "\n")

Run the code above in your browser using DataLab