Viewing profile — ankoh
ankoh
HN member- Joined
- Sun, Mar 12, 2017, 1:07 PM UTC
- HN karma
- 101
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About ankoh
No profile information was provided.
Recent public activity
-
comment
Comment #32501921
This has to be ruled out first: https://github.com/whatwg/fs/issues/7#issuecomment-116176851... ...but then the OPFS will be a quite decent fit. We (DuckDB-Wasm) are also looking c…
-
comment
Comment #30813665
We're still on a journey to explore what APIs work best with JavaScript but the differences between WASM and Node are on purpose. DuckDB-Wasm has isolated wasm heap memory and runs…
-
comment
Comment #29042558
The author outlines many problems that you'll run into when implementing a persistent storage backend using the current browser APIs. We faced many of them ourselves but paused any…
-
comment
Comment #29042147
I agree! DuckDB-Wasm can already open DuckDB database files in the browser the very same way.
-
comment
Comment #29040750
It depends. Querying CSV files is particularly painful over the network since we still have to read everything for a full scan. With Parquet, you would at least only have to read t…
-
comment
Comment #29040360
DuckDB-Wasm uses a traditional buffer manager and evicts pages using a combination of FIFO + LRU (to distinguish sequential scans from hot pages like the Parquet metadata).
-
comment
Comment #29040120
Yes we do! DuckDB-Wasm can read files using HTTP range requests very similar to the sql.js-httpvfs from phiresky. The blog post contains a few examples how this can be used, for ex…
- comment
-
comment
Comment #29039917
DuckDB-wasm is targeting the browser so it's not directly competing with Pandas (that's the job of native DuckDB). It's targeting use cases where you want to push analytical comput…
-
comment
Comment #29039480
The WebAssembly module is 1.6 - 1.8 MB brotli-compressed depending on the Wasm feature set. We're currently investigating ways to reduce this to around 1 MB. We further use streami…
- story