You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [X] a bug report
- [ ] a feature request
- [ ] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet)
What is the expected behavior?
fast execution :)
What is the current behavior?
Very slow performance introduced in commit:
Merge pull request #4073 from oleibman/issue1310
The problem is caused by calling the following code in setValueExplicit
For my particular script (14 sheets), without that line: 2.5-2.6 seconds, with that line: 7.0-7.2 seconds (almost 3x)
What are the steps to reproduce?
Write a bigger XLSX file. Versions before that commit execute way faster.
Commenting the line will reverse performance regression.
Maybe line should not be called on every call to setValueExplicit ?
Which versions of PhpSpreadsheet and PHP are affected?
All since 2.2.0.
Version 2.1.0 is not affecected
PHP 8.3
The text was updated successfully, but these errors were encountered:
This is:
What is the expected behavior?
fast execution :)
What is the current behavior?
Very slow performance introduced in commit:
Merge pull request #4073 from oleibman/issue1310
The problem is caused by calling the following code in
setValueExplicit
For my particular script (14 sheets), without that line: 2.5-2.6 seconds, with that line: 7.0-7.2 seconds (almost 3x)
What are the steps to reproduce?
Write a bigger XLSX file. Versions before that commit execute way faster.
Commenting the line will reverse performance regression.
Maybe line should not be called on every call to
setValueExplicit
?Which versions of PhpSpreadsheet and PHP are affected?
All since 2.2.0.
Version 2.1.0 is not affecected
PHP 8.3
The text was updated successfully, but these errors were encountered: