Last active
August 29, 2015 14:04
-
-
Save adohe-zz/abd26e9be05eab9ec418 to your computer and use it in GitHub Desktop.
filesystem operations vs socket operations within libuv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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