You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+91-1Lines changed: 91 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,97 @@ const main = async () => {
113
113
main();
114
114
```
115
115
116
+
## Advanced usage
117
+
118
+
### Threading
119
+
120
+
You can easily spin of your workers in separate threads using [worker_threads](https://nodejs.org/api/worker_threads.html#worker-threads) (Node.js >= 12.17.0).
121
+
122
+
It enables you to fully leverage your CPU cores and isolate your main application queue from potential memory leaks or crashes.
0 commit comments