註冊並分享邀請連結,可獲得影片播放與邀請獎勵。

DuckDB
@duckdb
DuckDB is an analytical SQL database management system. "DuckDB" and the DuckDB logo are registered trademarks of the DuckDB Foundation.
加入 May 2019
66 正在關注    25.8K 粉絲
` Chunked Query Results in the DuckDB Java Driver ` 🦆☕ The DuckDB #Java# driver can now return query results as a lazily fetched sequence of columnar data chunks, avoiding JDBC’s one-row-at-a-time ResultSet and its per-value overhead. DuckDB is a columnar, vectorized database. Every operator inside the engine works on data chunks: batches of column vectors, 2,048 rows at a time. That is a big part of why #DuckDB# is fast: the engine amortizes interpretation overhead over thousands of values instead of paying it once per value. JDBC, on the other hand, was designed in 1997. Here’s how the new DuckDB Java driver bridges the two:
顯示更多