C
ChUIMonster
Guest
New problem... new thread? In any event... yes, your DELETE code will be slow if you do it like that. "Chunking" multiple operations into a larger transaction is good for CREATE and UPDATE. It is bad for DELETE and irrelevant for READ. The best DELETE performance is a single thread with one DELETE per transaction.
Continue reading...
Continue reading...