Multithreading
We are running into issues since sendy appears to be single threaded we are not utilizing the server well which is throttling our send rate. Is there a multithreaded version of the script or an inclusion that we can run to multi thread sendy to better utilize our multi core server. Thank you for your assistance.
This discussion has been closed.
Comments
Hi,
Sendy uses
curl_multi_*
family of functions to send ‘non blocking’ bulk emails according to your Amazon SES send rate.For example if your Amazon SES send rate is 50 emails per second, Sendy sends 50 emails in parallel (non blocking) using
curl_multi_*
per second or iteration until all emails are sent in the campaign.Thanks.
Best regards,
Ben