Archive for January, 2007
Tuesday, January 23rd, 2007
Our sysadmin has a nice blog post with a few tips for using mysqldump, especially if your database is used for more than a basic site, or if you have stored procedures and/or triggers.
Posted in mysql | No Comments »
Friday, January 19th, 2007
A while ago when I started my first job in LA, I was using MSSQL. I was told to never use count(*), and rather to use count(1). Several people insisted this performs better than count(*), and since I really didn't care to argue or look into it, I ...
Posted in misconception, mysql | 4 Comments »
Wednesday, January 17th, 2007
REPLACE INTO will actually perform a delete and then an insert, while INSERT ... ON DUPLCIATE KEY UPDATE will perform an update (as the name suggests). I would think the latter would be faster. I have not done any performance testing between the two, but it only seems ...
Posted in mysql | 4 Comments »
Wednesday, January 17th, 2007
Although it's not officially announced, our read/write api is now out and in beta. It's not officially launched on the site or anything, but we are looking for interested partners.
Docs are here
Posted in answerbag | No Comments »