Hello,
I have an auction website which let my users place an unlimited amount of autobiddings.
To monitor these autobiddings something has to check the database every second.
My question is if it is better to use mysql trigger events or to user a cronjob every minute that executes a 60 sec looping php script.
If i use the mysql trigger events there will be hundreds of events stacks on eachother, and fired on different times. Is this even possible?? ANd isn't the server load goning to be enourmous. I heard somewhere that the database will be locked while there is a schedueled event. I am using innoDB tables btw.
I hope some one can shed some light on this toppic.
Regards!