arquero-worker
A proof-of-concept implementation of worker thread support for Arquero queries. Forks a worker thread using either a Web Worker or a node.js Worker thread and provides an API for authoring queries, submitting queries to the worker for processing, and fetching the query results.
Example
const qw = aq.worker('./arquero-worker.min.js');
const beers = await qw.load('beers', 'data/beers.csv');
const hops = await beers
.filter(d => op.match(d.name, /hop/i))
.select('name', 'abv', 'ibu')
.orderby('name')
.fetch();
hops.print();
For more, see the example page and its source code.
Build Instructions
To build and develop arquero-query locally: