We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSVダウンロードときにメモリ回収されない。 大量データダウンロードするときにメモリオーバーエラーになりやすい。
会員CSVダウンロードを調べたところ下記の修正でオーバーを解消できます
oywc410@9052e3c
問題個所として
src/Eccube/Service/CsvExportService.php::isNotEmptyとisEmpty内は
@trigger_error('The '.__METHOD__.' method is deprecated.', E_USER_DEPRECATED);
が利用されている
もう一つはCSVダウンロードときにイベント処理です。
$this->eventDispatcher->dispatch(EccubeEvents::ADMIN_CUSTOMER_CSV_EXPORT, $event);
CSVダウンロード時イベント制御と@trigger_error使いを見直したい
管理画面画面から大量データをダウンロードするときにメモリ回収せずにオーバーされる
#4336
The text was updated successfully, but these errors were encountered:
#4815 で対応
Sorry, something went wrong.
No branches or pull requests
概要(Overview)
CSVダウンロードときにメモリ回収されない。
大量データダウンロードするときにメモリオーバーエラーになりやすい。
会員CSVダウンロードを調べたところ下記の修正でオーバーを解消できます
oywc410@9052e3c
問題個所として
src/Eccube/Service/CsvExportService.php::isNotEmptyとisEmpty内は
が利用されている
もう一つはCSVダウンロードときにイベント処理です。
期待する内容(Expect) or 要望 (Requirement)
CSVダウンロード時イベント制御と@trigger_error使いを見直したい
再現手順(Procedure)
管理画面画面から大量データをダウンロードするときにメモリ回収せずにオーバーされる
環境 (environment)
関連情報 (Ref)
#4336
The text was updated successfully, but these errors were encountered: