On Fri, Oct 26, 2012 at 11:21 AM, James Jiang <[email protected]> wrote: > Is there a performance limitation for libeio, Or the eio thread pool is no > efficient today? > Could you please explain clearly? Because we have already use 'eio_custom' > function in our add-on.
libeio works okay but not great for our purposes (as evidenced by node's rather abysmal performance on file I/O benchmarks). We think we can improve on that with a custom thread pool that's tailored to our needs. The other reason is that we want to share the thread pool implementation between Windows and UNIX. Re: eio_custom(), you can use uv_queue_work() instead. -- 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
