실행하는 것에는 child-process 하위의
exec와 spawn이 있는데 exec는 버퍼를 돌려주고 spawn은 스트림을 돌려준다고 한다.
그런 이유로 dir /s와 같이 미친듯한 용량의 데이터를 뿜어주는 애를
exec로 실행할 경우 금세 200KB 버퍼 용량이 차서 node가 뻗어 버리게 된다.
[링크 : https://nodejs.org/api/child_process.html]
[링크 : https://stackoverflow.com/questions/10232192/exec-display-stdout-live]
kill
[링크 : https://stackoverflow.com/questions/18275809/kill-all-child-process-when-node-process-is-killed]
exec buffer 200kb
[링크 : http://ohgyun.com/453]
'Programming > node.js' 카테고리의 다른 글
node post header max size (0) | 2018.10.16 |
---|---|
node url parametet (0) | 2018.10.16 |
node tmp uuid (0) | 2018.10.12 |
node.js mysql PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR 에러 (0) | 2018.10.11 |
node.js 정적 파일 서비스 (0) | 2018.10.10 |