5 ms·
I believe even NodeJS's libuv came to the same unfortunate conclusion for non windows hosts. https://github.com/joyent/libuv https://github.com/joyent/libuv ht
by wizard_2 14y ago
I believe even NodeJS's libuv came to the same unfortunate conclusion for non windows hosts.
https://github.com/joyent/libuv https://github.com/joyent/libuv
http://nikhilm.github.com/uvbook/filesystem.html http://nikhilm.github.com/uvbook/filesystem.html
- Tobu 14y agoWhen node switched to libuv it didn't degrade io performance on unix hosts; io in threads has been competitive with evented io. I don't think async io was even considered, but let me know if you dig up anything.
- tedsuo 14y agoyep, node has always used a threadpool for filesystem calls, even before libuv.