Reduces extra memory usage on `__destruct()` calls (#3094)
* fix: Reduces memory usage on __destruct() call * docs: CHANGELOG.md Co-authored-by: Jose Rodriguez <jose.rodriguez@zecovery.com>
This commit is contained in:
parent
66695881e4
commit
c6b095b626
|
|
@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Nothing
|
- Reduces extra memory usage on `__destruct()` calls
|
||||||
|
|
||||||
|
|
||||||
## 1.25.2 - 2022-09-25
|
## 1.25.2 - 2022-09-25
|
||||||
|
|
|
||||||
|
|
@ -465,7 +465,7 @@ class Cells
|
||||||
*/
|
*/
|
||||||
private function getAllCacheKeys()
|
private function getAllCacheKeys()
|
||||||
{
|
{
|
||||||
foreach ($this->getCoordinates() as $coordinate) {
|
foreach ($this->index as $coordinate => $value) {
|
||||||
yield $this->cachePrefix . $coordinate;
|
yield $this->cachePrefix . $coordinate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue