Y
Hacker News
new
|
ask
|
show
|
jobs
by
wizard_2
4979 days ago
I believe even NodeJS's libuv came to the same unfortunate conclusion for non windows hosts.
https://github.com/joyent/libuv
http://nikhilm.github.com/uvbook/filesystem.html
1 comments
Tobu
4979 days ago
When 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.
link
tedsuo
4979 days ago
yep, node has always used a threadpool for filesystem calls, even before libuv.
link