我已经看到了大量这些FIND过程。我正在使用express运行 nodejs 并尝试使用POSTMAN来搜索Web服务。我不知道是什么触发了这些进程,而这一点正在减慢服务器速度。
虽然它确实说明了node_modules,但我不知道发生了什么。注意:我将MongoDb与MongoJS插件一起使用。
root 23597 1 0 Jun27 ? 00:10:03 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 23669 1 0 Jun27 ? 00:09:53 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 23723 1 0 Jun27 ? 00:09:43 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 23788 1 0 Jun27 ? 00:09:36 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 23846 1 0 Jun27 ? 00:09:28 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 23915 1 0 Jun27 ? 00:09:19 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 23988 1 0 Jun27 ? 00:09:10 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 24100 1 0 Jun27 ? 00:09:02 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root 24284 1 0 Jun27 ? 00:08:52 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
答案 0 :(得分:0)
我终于找到了原因。事实证明,NODEMON产生了所有这些发现过程。
根据对github的讨论,进行以下更改以避免nodemon尝试查找以下目录:
nodemon / LIB /配置/ defaults.js
while(cin >> Options){
switch(Options){
case 1:
cout << "a";
break;
case 2:
cout << "b";
break;
case 3:
cout << "c";
break;
default:
cout << "Hello";
}
}