joaomonteiro234

Results 4 comments of joaomonteiro234

A conducted a new test as follows: ``` const db = new duckdb.Database(':memory:'); function test() { db.run("SELECT * FROM READ_PARQUET('file.parquet')"); setTimeout(test, 100); } setTimeout(test, 100); setInterval(() => { const memory...

I left it running for 12+ hours and those are the results: ![image](https://github.com/duckdb/duckdb-node/assets/36680772/55376e86-4749-434c-b158-ecb905ddf531)

It was taking around 20ms to read the file, so there was no concurrent reading. Nonetheless I changed it and also tested with and without the prepared statement and the...

@nfadili, unfortunately no, I was on a short schedule so I decided to stop using the library.