Matthew Lenz

Results 14 comments of Matthew Lenz

How terrible is this (uses Try::Tiny::Retry)? The only obvious issue I see is that your code already reattempts connections for some of those exceptions so the total number of tries...

David, along the same line. You disable mysql_auto_reconnect. DBD::mysql already ignores this setting when inside a transaction (won't reconnect). I assume your code knows if it's inside a run() block,...

Right now dbmate appears to apply any missing migrations from the specified path regardless of their naming. For example if I add a new migration file that has an older...

FYI, you could dual license this and charge for it to make money. AGPL has specifically clauses with regards to web applications. I'm guessing about 99% of web application companies...

I understand completely. Not exactly a quick undertaking. Thanks for the response.

@spansh, how much slower was Syntax::Keyword::Try than eval?

@davidducos I'd think 2. But I think it would need to only uncompress the temp files as needed and immediately remove them after the data is loaded. The reason I...

I do typically just use the INSERT version but I've never seen an INSERT statement outperform a LOAD DATA statement in my own testing (non-mydumper/myloader). Maybe that's not the case...

@pali, mysql_ssl_verify_server_cert is disable by default (it doesn't help with disabling CA verification). I'm just looking for parity with the ssl functionality provided by the standard mysql client. There are...

**mysql_ssl_optional** > Setting mysql_ssl_optional to true disables strict SSL enforcement and makes SSL connection optional. This option opens security hole for man-in-the-middle attacks. Default value is false which means that...