MySQL problem
#1

If send 50.000 'UPDATE' requests in the 'for' then after 15.000 requests data not stored in the database.

Why?

Plugin by BlueG
Reply
#2

Please rephrase the question... or maybe show us some code?
Reply
#3

And why exactly do you need 50k updates? In any case, for such large transactions you should use, well, transactions.

PHP код:
START TRANSACTION;
UPDATE ...
UPDATE ...
UPDATE ...
COMMIT
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)