Hi,
Is there any way I can adjust the "import from external data" to import at a higher rate (faster)? For example more records at a time. My server has very high specs and can handle many more requests than what the importer is sending. Currently it is very slow because it seems that the data import process is throttled.
I assume its in /library/XenForo/Importer/vBulletin.php
Raise limit and postLimit?
Thanks in advance
Is there any way I can adjust the "import from external data" to import at a higher rate (faster)? For example more records at a time. My server has very high specs and can handle many more requests than what the importer is sending. Currently it is very slow because it seems that the data import process is throttled.
I assume its in /library/XenForo/Importer/vBulletin.php
Code:
public function stepThreads($start, array $options)
{
$options = array_merge(array(
'limit' => 100,
'postDateStart' => 0,
'postLimit' => 800,
'max' => false
), $options);
Raise limit and postLimit?
Thanks in advance
Last edited: