diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-17 16:49:00 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-17 16:49:00 -0800 |
commit | ce6be4f83624d8c39a93d2b54567cc2f33580812 (patch) | |
tree | c121a3d5666c98649351fa04cc48e4c03a16db76 /scripts/queuedaemon.php | |
parent | 73ba26efe3d9d97c478a507d351ac92d28d82655 (diff) |
Queues: redid the breakout control model so we can start up and subscribe to queues without running through the complete site list, which is ok at 1k sites but too slow at 10k.
All breakout queues that we're going to need to listen to now need to be explicitly listed in $config['queue']['breakout'].
Until XMPP is moved to component model, this setting will let the individual processes work with their own queues:
$config['queue']['breakout'][] = 'xmpp/xmppout/' . $config['site']['nickname'];
Diffstat (limited to 'scripts/queuedaemon.php')
-rwxr-xr-x | scripts/queuedaemon.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/queuedaemon.php b/scripts/queuedaemon.php index d372d898f..6dba16f95 100755 --- a/scripts/queuedaemon.php +++ b/scripts/queuedaemon.php @@ -126,8 +126,7 @@ class QueueDaemon extends SpawningDaemon class QueueMaster extends IoMaster { /** - * Initialize IoManagers for the currently configured site - * which are appropriate to this instance. + * Initialize IoManagers which are appropriate to this instance. */ function initManagers() { |