mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-08-17 00:18:41 -07:00
perf(stats): calculate vocabulary totals off main thread
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { parentPort, workerData } from 'node:worker_threads';
|
||||
import { executeVocabularySummaryTask } from './vocabulary-summary-worker';
|
||||
|
||||
interface VocabularySummaryWorkerData {
|
||||
dbPath: string;
|
||||
knownWords: string[] | null;
|
||||
}
|
||||
|
||||
if (!parentPort) throw new Error('vocabulary summary worker missing parent port');
|
||||
|
||||
const request = workerData as VocabularySummaryWorkerData;
|
||||
|
||||
try {
|
||||
parentPort.postMessage({
|
||||
summary: executeVocabularySummaryTask(request.dbPath, request.knownWords),
|
||||
});
|
||||
} catch (error) {
|
||||
parentPort.postMessage({ error: error instanceof Error ? error.message : String(error) });
|
||||
}
|
||||
Reference in New Issue
Block a user