Hello all, This weekend I was poking around MariaDB's website and noticed they had recently released a libmysqlclient library that contains non- blocking functions. So I took it upon myself today to start writing a binding to it and to see how well such a binding would perform.
One silly benchmark I did was executing "SHOW DATABASES" on a stock XAMPP MySQL server. With the `mysql` module, the total time taken from start to finish was anywhere from ~141-151ms. With the `mariasql` module, the total time was anywhere from ~6-46ms. I also wanted to try the node-libmysqlclient binding, but I was doing main development and testing for mariasql on Windows at the time and node-libmysqlclient is not currently available there. There are still things to be implemented yet, but the basics are already there. I encourage feedback on this project, whether it's in the form of bug reports, bug fixes, enhancement requests, other comments, etc. :-) URL: https://github.com/mscdex/node-mariasql Via npm: `npm install mariasql` -- 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
