On Sat, 08 Aug 2009 01:46:38 +0300, Waynn Lue <waynn...@gmail.com> wrote:

Hey PHPers,

We've been doing sampled logging to the database in our application for
awhile, and now I'm hoping eventually to blow that out to a larger scale.
I'm worried about the performance implications of logging to our database on
...


If you are using mysql and MyISAM tables, you can try using "insert DELAYED " method.

http://dev.mysql.com/doc/refman/5.1/en/insert-delayed.html

This will bulk all your inserts for writes.


--

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to