@uwdata/mosaic-core 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/mosaic-core.js +802 -448
- package/dist/mosaic-core.min.js +5 -4
- package/package.json +5 -5
- package/src/Catalog.js +1 -0
- package/src/Coordinator.js +9 -2
- package/src/MosaicClient.js +17 -3
- package/src/QueryConsolidator.js +8 -1
- package/src/connectors/wasm.js +48 -5
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
# mosaic-core
|
|
2
2
|
|
|
3
|
-
The core Mosaic components: a central coordinator, parameters and selections for linking scalar values or query predicates (respectively) across Mosaic clients, and filter groups with optimized index management. The Mosaic coordinator can send queries either over the network to a backing server (`socket` and `rest` clients) or to a client-side [DuckDB-WASM](https://github.com/duckdb/duckdb-wasm) instance (`wasm` client).
|
|
3
|
+
The core Mosaic components: a central coordinator, parameters (`Param`) and selections (`Selection`) for linking scalar values or query predicates (respectively) across Mosaic clients, and filter groups with optimized index management. The Mosaic coordinator can send queries either over the network to a backing server (`socket` and `rest` clients) or to a client-side [DuckDB-WASM](https://github.com/duckdb/duckdb-wasm) instance (`wasm` client).
|
|
4
|
+
|
|
5
|
+
The `mosaic-core` facilities are included as part of the [vgplot](https://github.com/uwdata/mosaic/tree/main/packages/vgplot) API.
|