I compared the time cost of demo5 and same read+write to file.xlsx with duckdb.
the duckdb is faster.
could you give me some suggesion to improve openxlsx's speed?
OpenXLSX
tar xf OpenXLSX-master.zip
cd OpenXLSX-master
mkdir build
cd build
cmake ..
make
time OpenXLSX/build/output/Demo5
and duckdb
wget https://github.com/duckdb/duckdb/releases/download/v1.3.2/duckdb_cli-linux-amd64.zip
duckdb
D load excel;
D .timer on
D copy (from 'Demo05.xlsx') to 'Duckdemo5.xlsx';
I compared the time cost of demo5 and same read+write to file.xlsx with duckdb.
the duckdb is faster.
could you give me some suggesion to improve openxlsx's speed?
OpenXLSX
and duckdb