node-worker-threads Questions
0
I'm trying to write a node code that will read multiple json files from directory and insert mapped data into mongodb collection. In order to speed up the process, I have follwed following steps:
...
Mufinella asked 3/1, 2023 at 12:38
3
Solved
I am trying to use node.js 'worker_threads' library with Node v14.15.1 and getting this error
Cannot find module 'worker_threads' or its corresponding type declarations.ts(2307)
tsc
src/api/serv...
Impregnable asked 19/12, 2020 at 15:39
1
I would like to create a worker thread in a node.js app and pass the current context to the new thread, so I would be able to access my variables and functions within the new thread, Is there is a ...
Araby asked 7/9, 2021 at 8:1
2
I got a typescript module (used by a VSCode extension) which accepts a directory and parses the content contained within the files. For directories containing large number of files this parsing tak...
Gudgeon asked 17/5, 2021 at 19:52
3
I was just experimenting worker process hence try this:
const http = require("http");
const cluster = require("cluster");
const CPUs = require("os").cpus();
const numC...
Ender asked 20/1, 2021 at 14:16
1
Solved
To contextualize, I would like to use class instances functions through a Worker Thread from NodeJS "worker_thread" module.
In one main.js file I declare a class and instanciate a new Wor...
Dryden asked 19/11, 2020 at 21:42
1
Did I understand correctly: If I use cluster package, does it mean that
a new node instance is created for each created worker?
What is the difference between cluster and worker_threads packages?...
Greggrega asked 18/6, 2019 at 20:19
1
© 2022 - 2024 — McMap. All rights reserved.