7 ms·
DuckDB does as well. A super simplified explanation of duckdb is that it’s sqlite but columnar, and so is better for analytics of large datasets.
by cobolcomesback 9mo ago
DuckDB does as well. A super simplified explanation of duckdb is that it’s sqlite but columnar, and so is better for analytics of large datasets.
- formerly_proven 9mo agoThe schema is this: items(id INTEGER PRIMARY KEY, type TEXT, time INTEGER, by TEXT, title TEXT, text TEXT, url TEXT Doesn't scream columnar database to me.
- embedding-shape 9mo agoAt a glance, that is missing (at least) a `parent` or `parent_id` attribute which items in HN can have (and you kind of need if you want to render comments), see http://hn.algolia.com/api/v1/items/46436741 http://hn.algolia.com/api/v1/items/46436741
- agolliver 9mo agoEdges are a separate table