File system performance of nodejs vs..net System.IO?

I need the project to perform read and write operations on the Windows Server 2008 R2 file system. For this, I would consider using a nodejs FS module or .NET System.IO module. Ask someone to do a benchmark between them? I appreciate if someone likes to share experiences.

thank

+3
source share
1 answer

I was curious about that. I created a simple read-only test. I checked the testing in my src code directory from 19K files, 4K subdirectories and only 850 MB of disk space.

Performance performance .Net vs Node, in the case of a warm FS, was approximately equal to a tie.

5 ( ): Node: 3.037, CLR: 2.976

w/cold numbers.

: https://github.com/ScottWeinstein/NodeVsNetFSPerf

+4

All Articles