2
votes
What is the best way to access a database from PHP?
I'd choose the MDB2 database abstraction layer from PEAR - it provides a nice, abstracted method to deal with the database. I recommend …
3
votes
MySQL slow query log - how slow is slow?
Whatever time /you/ feel is unacceptably slow for a query on your systems.
It depends on the kind of queries you run and the kind of system; a query taking several seconds might not matter …
1
vote
“Mysql server has gone away” with Rails
The connection to the MySQL server is probably timing out.
You should be able to increase the timeout in MySQL, but for a proper fix, have your code check that the database connection is st …
