Skip to content
Snippets Groups Projects
Commit 50ee8c33 authored by Benni Mack's avatar Benni Mack Committed by Richard Haeser
Browse files

[BUGFIX] Remove unused cache in LanguageService

In order to reduce the memory footprint of fetching
label files, a superfluous cache LL_files_cache
is removed, as there is a cache within readLLfile()
already.

Resolves: #93694
Releases: master
Change-Id: I206eb566e14d5b72f0ad15d64625cf5493bae3ff
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/68305


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarRichard Haeser <richard@richardhaeser.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarRichard Haeser <richard@richardhaeser.com>
parent 38325243
Branches
Tags
No related merge requests found
......@@ -55,13 +55,6 @@ class LanguageService
*/
public $debugKey = false;
/**
* Internal cache for read LL-files
*
* @var array
*/
protected $LL_files_cache = [];
/**
* Internal cache for ll-labels (filled as labels are requested)
*
......@@ -206,11 +199,7 @@ class LanguageService
}
$parts = explode(':', trim($restStr));
$parts[0] = $extPrfx . $parts[0];
// Getting data if not cached
if (!isset($this->LL_files_cache[$parts[0]])) {
$this->LL_files_cache[$parts[0]] = $this->readLLfile($parts[0]);
}
$output = $this->getLLL($parts[1], $this->LL_files_cache[$parts[0]]);
$output = $this->getLLL($parts[1], $this->readLLfile($parts[0]));
} else {
// Use a constant non-localizable label
$output = $input;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment