node.js - Creating a process Queue in node -
currently using child-process npm module create child process heavy task . new processes created whenever user makes api call node server. if api hit lot of times, lots of new child processes created.
i want handle these child-process , every newly created child process added queue, , 1 one process picked queue , executed. can 1 me achieve or how process issue.
thanks
Comments
Post a Comment