[!!!][TASK] Remove cache_imagesizes
This change removes the cache "imagesizes" along with the public methods within GraphicalFunctions. The main reason for having cache_imagesizes back in TYPO3 v4.x was that detecting the image sizes was done via ImageMagick solely. Nowadays, the ImageInfo functionality is used, which uses - getimagesize() - exif_read_data() before falling back to ImageMagick identify. Most places in TYPO3 Core already use ImageInfo directly without using the cache. A image size calculation is nowadays with SSD much faster than a decade before, whereas a DB cache (by default) for cache_imagesizes has a much more latency. As cache_imagesizes is solely used for local files, remote FAL drivers do not have a problem here as well. Removed public methods: - GraphicalFunctions->cacheImageDimensions() - GraphicalFunctions->getCachedImageDimensions() The main public method GraphicalFunctions->getImageDimensions() still continues to exist and work as before. Resolves: #102009 Releases: ma...
Showing
- typo3/sysext/core/Classes/DataHandling/DataHandler.php 0 additions, 3 deletionstypo3/sysext/core/Classes/DataHandling/DataHandler.php
- typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php 15 additions, 106 deletionstypo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
- typo3/sysext/core/Classes/Resource/Processing/LocalImageProcessor.php 9 additions, 14 deletions.../core/Classes/Resource/Processing/LocalImageProcessor.php
- typo3/sysext/core/Configuration/DefaultConfiguration.php 0 additions, 8 deletionstypo3/sysext/core/Configuration/DefaultConfiguration.php
- typo3/sysext/core/Configuration/Services.yaml 0 additions, 5 deletionstypo3/sysext/core/Configuration/Services.yaml
- typo3/sysext/core/Documentation/Changelog/13.0/Breaking-102009-ImagesizesCacheRemoved.rst 63 additions, 0 deletions...Changelog/13.0/Breaking-102009-ImagesizesCacheRemoved.rst
- typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php 12 additions, 2 deletions.../frontend/Classes/ContentObject/ContentObjectRenderer.php
- typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php 0 additions, 7 deletions...nd/Tests/Unit/ContentObject/ContentObjectRendererTest.php
- typo3/sysext/install/Classes/Configuration/Cache/CustomCachePreset.php 0 additions, 1 deletion...install/Classes/Configuration/Cache/CustomCachePreset.php
- typo3/sysext/install/Classes/Configuration/Cache/DatabaseCachePreset.php 0 additions, 2 deletions...stall/Classes/Configuration/Cache/DatabaseCachePreset.php
- typo3/sysext/install/Classes/Configuration/Cache/FileCachePreset.php 0 additions, 3 deletions...t/install/Classes/Configuration/Cache/FileCachePreset.php
- typo3/sysext/install/Classes/Controller/EnvironmentController.php 12 additions, 16 deletions...sext/install/Classes/Controller/EnvironmentController.php
- typo3/sysext/install/Configuration/ExtensionScanner/Php/MethodCallMatcher.php 14 additions, 0 deletions.../Configuration/ExtensionScanner/Php/MethodCallMatcher.php
Please register or sign in to comment