You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The idea is to add a key => value Cache service that uses a WeakReference Object has value.
WeakReference was implemented in PHP 7.4, it uses creates an objects that has a reference to an object but does not prevent it from being destroyed by the Garbage Collector.
So we can have a key => value cache that will return an object if it exists anywhere in memory and has not been destroyed by the GB.
This will help solve issues with the ORM in the future.
The idea is to add a key => value Cache service that uses a WeakReference Object has value.
WeakReference was implemented in PHP 7.4, it uses creates an objects that has a reference to an object but does not prevent it from being destroyed by the Garbage Collector.
So we can have a key => value cache that will return an object if it exists anywhere in memory and has not been destroyed by the GB.
This will help solve issues with the ORM in the future.
For more information about WeakReference
https://www.php.net/manual/en/class.weakreference.php
The text was updated successfully, but these errors were encountered: