Actions
Bug #39731
closedBug #36744: Workspaces are unusable on larger installations
Calculate percentage of differences if column is shown
Start date:
2012-08-12
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
The workspace view in the backend has a feature to calculate the percentage of differences between live and workspace version.
This implementation iterates over each record and each field by using the PHP method similar_text().
The complexity of similar_text() is measured with O(n^3) which quickly can turn into a nice waiting period if string length is more than approx 4000 characters.
Thus, the change value will only be calculated if the accordant column "change" is shown.
Actions