[WITH FIX] Slow sending when big broadcast/many contacts
-
Problem:
Slow sending when the number of contacts increase.
Cause:
Slow database updates when updating the wp_ig_sending_queue table, due to missing index on contact_id column.
Solution:
Create a index on the column “contact_id” in the database table wp_ig_sending_queue
Query:
CREATE INDEX contact_id_idx ON wp_ig_sending_queue (contact_id);
Speed improvement:
Before: 4 seconds per email
After: 0.8 seconds per email
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[WITH FIX] Slow sending when big broadcast/many contacts’ is closed to new replies.