Skip to content

Instantly share code, notes, and snippets.

@adohe-zz
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save adohe-zz/abd26e9be05eab9ec418 to your computer and use it in GitHub Desktop.

Select an option

Save adohe-zz/abd26e9be05eab9ec418 to your computer and use it in GitHub Desktop.
filesystem operations vs socket operations within libuv
The libuv filesystem operations are different from socket operations. Socket
operations use the non-blocking operations provided by the operating system.
Filesystem operations use blocking functions internally, but invoke these
functions in a thread pool and notify watchers registered with the event loop
when application interaction is required.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment