sphinx9999 Posted November 27, 2007 Share Posted November 27, 2007 I need to log impressions v. quickly. This could mean up to 10 inserts per script call (and possibly a high number of calls per second). Normally I would do a quick loop and insert a row for each iteration. However, I could do with speeding this up to reduce the number of calls to the database. Is there any way I can send the data to mysql and instead of having to wait for a response move straight on and add the next. It's not critical to get EVERY response; I will assume that they have gone in successfully (and take the consequences if they haven't ). Thanx Link to comment https://forums.phpfreaks.com/topic/79100-solved-stop-waiting-for-a-response/ Share on other sites More sharing options...
fenway Posted November 27, 2007 Share Posted November 27, 2007 INSERT DELAYED. Link to comment https://forums.phpfreaks.com/topic/79100-solved-stop-waiting-for-a-response/#findComment-400361 Share on other sites More sharing options...
sphinx9999 Posted November 28, 2007 Author Share Posted November 28, 2007 Yep, that sounds like the puppy - http://www.petefreitag.com/item/430.cfm. Thanx fenway Link to comment https://forums.phpfreaks.com/topic/79100-solved-stop-waiting-for-a-response/#findComment-400997 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.