Using duckDB from within R, e.g.
library(duckdb)
dbname <- "sparsemat.duckdb"
con2 <- dbConnect(duckdb(), dbname)
dbExecute(con2, "PRAGMA memory_limit='1GB';")
how can I find out how many threads the (separate process) is using? I am aware of
dbExecute(con2, "PRAGMA threads=4;")
but I am interested in figuring out reading this configuration detail, not setting it.