Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use process.stdout.write instead of console.log and increase batch size
`console.log` does some extra work to construct the output, and because it's already a string, we can save some memory by using `process.stdout.write`. See this issue for more information: nodejs/node#1741 (comment) This is an attempt to remedy the OOM issues when rendering all the issues. Increasing the batch size will also help by reducing the number of GCs.
- Loading branch information