[BUGFIX] Implement locking in ClassLoader
After cache clearing we can run in the situation that 2 processes will rebuild the ClassLoader cache which will lead to a non useable cache, which produces fatals. As the data is generated more than once the load of the server increases per request while ClassLoader cache is build. The implemented Locking will stop this issue. Every process waits till the first is ready and then looks if data was generated and stops re- generating the cache. Resolves: #55099 Releases: 6.2 Change-Id: I109821b9c37ec99c5ec5dbc5bcef6223d1d0d153 Reviewed-on: https://review.typo3.org/28156 Reviewed-by: Markus Klein Tested-by: Markus Klein Reviewed-by: Thomas Maroschik Tested-by: Thomas Maroschik Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring
Please register or sign in to comment