Dominik Moritz
Dominik Moritz
https://github.com/vega/vl-convert/tree/main/vl-convert-python#convert-altair-chart-to-svg-png-and-vega still uses Altair 4.
### Steps to reproduce I use element X on macOS (Mac with apple silicon) on Sonoma. Try typing a longer message. ### Outcome I noticed that whenever I encounter a...
Right now, loading initial views can be slow. If the user never interact with the charts, we loaded the full data unnecessarily and could have just loaded the data for...
The web socket connector serializes queries as it only allows a single query at a time. We should update the connector (and the servers) to allow parallel queries. This will...
The specs we used in the widget got a bit out of sync with the examples in the repo. This pull request implements a method to pull all examples from...
Closes #483 (not working yet) Needs https://github.com/duckdb/duckdb-node/issues/113 if we want to get the node server to work. The rust and python servers should work.
This builds on #388. The idea here is that Mosaic sends queries to a backend for execution but can only run so many queries simultaneously. With fine grained dependencies, we...
Mosaic executes a lot of very similar queries on the indexes. We could use prepared statements to speed up queries by avoiding the passing overhead of sql for every query.
```js const duckdb = require("duckdb"); const db = new duckdb.Database(":memory:"); const con = db.connect(); const stmt = con.prepare("SELECT ?::INTEGER AS fortytwo"); stmt.arrowIPCAll(42, function (err, res) { if (err) { console.warn(err);...