meta data for this page
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
system:config:messagequeue_prepare [2016/06/29 16:36] – samtuke | system:config:messagequeue_prepare [2016/06/29 16:38] (current) – samtuke | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ---- dataentry configoptions ---- | ||
+ | type : constant | ||
+ | name : MESSAGEQUEUE_PREPARE | ||
+ | purpose | ||
+ | allowed | ||
+ | default | ||
+ | status_s | ||
+ | category | ||
+ | ---- | ||
+ | |||
+ | This option will initially mark all subscribers that need to receive the campaign as " | ||
+ | |||
+ | It may save a little on SQL time when you have a large amount of subscribers, | ||
+ | |||
+ | Comparison: | ||
+ | |||
+ | When MESSAGEQUEUE_PREPARE is 0, each batch of messages is processed as | ||
+ | follows: | ||
+ | |||
+ | - Find all subscribers who need to receive the campaign and haven' | ||
+ | - Dispatch the campaign to some subscribers (batch size settings determine how many) | ||
+ | |||
+ | When MESSAGEQUEUE_PREPARE is 1, the first batch of messages is processed | ||
+ | as follows: | ||
+ | |||
+ | - Find all subscribers who need to receive the campaign (as in step 1 above) | ||
+ | - Mark the found subscribers as " | ||
+ | - Send some of the marked subscribers the campaign | ||
+ | |||
+ | Then for all subsequent batches: | ||
+ | |||
+ | - Find subscribers marked " | ||
+ | - Send some of them the campaign (batch size settings determine how many) | ||
+ | |||
+ | See also [[MAX_SENDPROCESSES]] |