Currently, my C++ program communicates with my node.js app via stdin/stdout. So, my node.js app instantiate my C++ program using child_process and use its stdin/stdout.
Recently, I played with node.js addons: http://nodejs.org/api/addons.html and discovered that a simple "a + b" program can be up to 50x faster implemented as addons compared to C++ program that uses scanf / printf and communicate via stdin/stdout. So, I am really motivated to use addons for the communications! However, my C++ program has interaction with disk (has to perform I/O). The current node.js documentation above doesn't have an example on how to use addons + libuv to do a non-blocking addons. Can anyone give a simple example of non-blocking addons? Thanks, Felix Halim -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
