Which reads files 10 times slower — Java or Node.js? Both
Node.js clearly excels at I/O operations but does not use the disk cache. Java gets fast when the files are the disk cache

Node.js is believed to be efficient at disk or network operations because, unlike Java, in Node.js all I/O operations are non-blocking unless you intentionally…