數(shù)據(jù)導(dǎo)出系統(tǒng)
不要直接將代碼復(fù)制到項(xiàng)目中,在后臺(tái)插件市場(chǎng)安裝
xlswriter
擴(kuò)展,未安裝將使用 phpoffice/phpspreadsheet
導(dǎo)出,數(shù)據(jù)量大會(huì)內(nèi)存溢出config/plugin/webman/redis-queue/process.php
<?php
return [
...
// 增加以下配置
'consumer_export' => [
'handler' => Webman\RedisQueue\Process\Consumer::class,
'count' => 5, // 可以設(shè)置多進(jìn)程同時(shí)消費(fèi)
'constructor' => [
// 消費(fèi)者類目錄
'consumer_dir' => base_path() . '/plugin/export/app/queue'
]
],
];