如果我制作了一个电子应用程序,我很难用谷歌搜索我将如何进行多线程处理。会不会是网络工作者?
答案 0 :(得分:20)
在渲染器进程中,您可以创建Web Workers,然后这些将在自己的线程中运行,但Node integration will be disabled in those Web Workers因为Node不是线程安全的。因此,如果您想在使用Node的单独线程中运行某些内容,那么您需要生成一个单独的流程,您可以使用child_process.fork()
生成,然后使用send()
与新流程进行通信。< / p>
答案 1 :(得分:13)
Electron的工作原理与Node相同。在node.js中,线程不是执行的原子单元。您在事件循环中工作,默认情况下执行是异步的。请参阅here for details.据说你可以通过分支来扩展node.js中的多个子进程。
这是一个例子。
//forking a process using cluster
var cluster = require('cluster');
var http = require('http');
var numCPUs = 4;
if (cluster.isMaster) {
for (var i = 0; i < numCPUs; i++) {
cluster.fork();
}
} else {
http.createServer(function(req, res) {
res.writeHead(200);
res.end('process ' + process.pid + ' says hello!');
}).listen(8000);
}
示例为How to creat a node.js cluster for speeding up your apps.。
回到Electron还有一些值得注意的其他概念。 Electron中的过程是独一无二的,因为它们有两种口味。
**渲染过程** - 包含网页的过程。与典型的网页一样,这些流程在沙箱中创建。
**主要流程** - 引导您的应用程序的过程。它创建渲染过程及其网页。它还可以通过rpc充当所有衍生渲染过程的通信中心。
以下是来自the Electron Tutorial的样本的 main.js 部分。这是调用浏览器窗口的主要过程。请特别注意mainWindow
变量。
'use strict';
const electron = require('electron');
const app = electron.app; // Module to control application life.
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window.
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
var mainWindow = null;
// Quit when all windows are closed.
app.on('window-all-closed', function() {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform != 'darwin') {
app.quit();
}
});
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
app.on('ready', function() {
// Create the browser window.
mainWindow = new BrowserWindow({width: 800, height: 600});
// and load the index.html of the app.
mainWindow.loadURL('file://' + __dirname + '/index.html');
// Open the DevTools.
mainWindow.webContents.openDevTools();
// Emitted when the window is closed.
mainWindow.on('closed', function() {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null;
});
});
TL; DR;
Node.js中不存在线程,而电子是基于Node.js \ io.js和Chromium构建的框架。 Electron的基础是Node.js.您可以在node.js中使用分叉生成子进程。
答案 2 :(得分:1)
根据Multithreading文档:
使用Web Workers,可以在OS级别的线程中运行JavaScript。
支持Node的所有内置模块,但是Electron的内置模块或具有本机绑定的模块都不应该在Web Workers中使用,因为它们不是设计为线程安全的。
答案 3 :(得分:0)
查看Electron Edge。它使您能够在单个进程中运行.NET代码和node.js(无需IPC,性能更佳)。这意味着您可以利用.NET的多线程模型和node.js的单线程。
由于.NET Core,它将在Linux,Mac和Windows上运行。