Blake Miner
Blake Miner
Sorry... it's still a V8 issue. I don't have much control over it. :( You can feel free to bug the V8 guys, though. Once it's fixed in V8, it...
@mpj - lol. Good point. Would you mind creating a separate issue (if it doesn't already exist) and link to it here?
**Update:** Google V8 issues that address this problem: ~~\- https://code.google.com/p/v8/issues/detail?id=1281~~ - https://code.google.com/p/v8/issues/detail?id=2589
@braco - Good point. This is a fairly low priority at this time, but I'll keep it on the list. Pull requests are graciously accepted. :)
@simplej - I appreciate your criticisms, and I agree with some of your points. Please keep in mind that while Node.js is an asynchronous environment, sending SQL commands to a...
Checkout issue #12, as well. This topic was discussed at length already. :) Checkout the mini-discussion below: > > The problem is that without pause() mysql-queues has no way of...
@simplej - Good points. Using a separate connection for each transaction is probably the best strategy. I'd like to see a library that does this to support MySQL transactions. Only...
I should also mention that the need for this lib should eventually (and hopefully) go away. This is more of a temporary solution to be used until node-mysql provides a...
@simplej - Ah! I did not realize that node-mysql already had connection pools built right in! In that case, building a new lib to solve this problem should be relatively...
@simplej - So, I think it might be a worthwhile exercise to document this API for clarity: - `Pool.prototype.startTransaction(cb)` -- Creates a new Connection and executes "START TRANSACTION". `cb` is...