0
votes
Connect to a MySQL server over SSH in PHP
I would use the autossh tool to create a persistent ssh tunnel to your mysql database. Then all you have to do in your PHP code is p …
0
votes
Scaling LAMP
Barrett's answers are pretty much what I would do -- id the bottlenecks, look at memcached, move the DB to a separate server from web services, etc.
I would add that Amazon has a new servi …
5
votes
How can I implement commit/rollback for MySQL in PHP?
Take a look at this tutorial on transactions with PDO.
Basically wrap the long running code in: …
0
votes
Optimize feed fetching
The best thing to do is to be 'nice' and not overload the feeds with lots of needless requests. I settled on a 1 hour update time for one of my webapps that monitors about 150 blogs for updates. I …
2
votes
Should I use PHP or Perl for massaging my data and storing/retrieving it with MySQL?
PHP works fine from the command line. If it is what you are familiar with, and more importantly what the company is familiar with (think of who has to maintain it after you).
…
