$cfg->setConfigEntry('stacker_outgoing_queue_max_size', 1000);
// CFG: STACKER-INCOMING-QUEUE-MAX-SIZE
-$cfg->setConfigEntry('stacker_incoming_queue_max_size', 1000);
+$cfg->setConfigEntry('stacker_incoming_queue_max_size', 100000);
// CFG: NEWS-MAIN-LIMIT
$cfg->setConfigEntry('news_main_limit', 5);
$cfg->setConfigEntry('task_cruncher_key_producer_startup_delay', 750);
// CFG: TASK-CRUNCHER-KEY-PRODUCER-INTERVAL-DELAY
-$cfg->setConfigEntry('task_cruncher_key_producer_interval_delay', 10);
+$cfg->setConfigEntry('task_cruncher_key_producer_interval_delay', 5);
// CFG: TASK-CRUNCHER-KEY-PRODUCER-MAX-RUNS
$cfg->setConfigEntry('task_cruncher_key_producer_max_runs', 0);
// Get key length
$this->keyLength = $this->getConfigInstance()->getConfigEntry('test_unit_random_secret_key_length');
- // Make sure the key length isn't getting to big (32 byte = 256 bit is really a lot)
+ // Make sure the key length isn't getting to big (32 byte = 256 bit is really, really a lot!)
assert($this->keyLength <= (8 * 32));
// Set max bits entry
$this->maxBits = pow(2, $this->keyLength);
// Debug message
- $this->debugOutput('ITERATOR: maxBits=' . $this->maxBits . ',keyLength=' . $this->keyLength);
+ $this->debugOutput('ITERATOR: maxBits=' . $this->maxBits . ',keyLength=' . $this->keyLength . ' bits');
}
/**