我正在使用 iisnode 运行我的 node.js 应用程序。但是,大约一个小时后,node.exe 进程停止运行(我需要它运行,因为我有一个 setInterval() 方法,每隔几秒从数据库中提取数据)。有什么建议吗?
另外,如果我使用 process.env.PORT 设置服务器,如何在客户端使用 socket.io 连接到它?我明白我必须使用
io.configure(function () {
io.set("transports", ["xhr-polling"]); // no websockets
io.set("polling duration", 10);
io.set("log level", 1); // no debug msg
});