Re: [PHP] Re: Buffered Logging?

2009-08-10 Thread Waynn Lue
Thanks for all the help! I'm going to try just writing to a database table first with INSERT DELAYED, and if there ends up being a performance hit, I'll use a MEMORY table that gets archived off every 5 minutes or so. Waynn

[PHP] Re: Buffered Logging?

2009-08-07 Thread Ollisso
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

Re: [PHP] Re: Buffered Logging?

2009-08-07 Thread Waynn Lue
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

Re: [PHP] Re: Buffered Logging?

2009-08-07 Thread Ralph Deffke
I did some very complete logging for two major german companies on their intranet pages. an application with something like 23000 registered users and more then 5 hits a day. I did none of any kind of buffering, just raw table inserts. it never gave any problem on performance HOWEVER we did a

Re: [PHP] Re: Buffered Logging?

2009-08-07 Thread Phpster
On Aug 7, 2009, at 9:25 PM, 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