We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9985b9 commit 874a173Copy full SHA for 874a173
src/EngineManager.php
@@ -58,6 +58,10 @@ public function createAlgoliaDriver()
58
$config->setWriteTimeout($writeTimeout);
59
}
60
61
+ if (is_int($batchSize = config('scout.algolia.batch_size'))) {
62
+ $config->setBatchSize($batchSize);
63
+ }
64
+
65
return new AlgoliaEngine(Algolia::createWithConfig($config), config('scout.soft_delete'));
66
67
0 commit comments