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
{{ message }}
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
Y instances are cached within the client controller context object by mojit instance guid so that many actions on the same controller can always occur on the same instance.
If all the views of a particular mojit controller are destroyed, that Y instance is never removed.
This is a possible memory leak.
Every time a mojit proxy's private _destroy() function is called, the client needs to do a check to see if there are any more mojit proxies that exist tied to that same instance guid. If not, it should notify the ControllerContext to clear the cache for that guid, and it should dereference the cached Y instance.
The text was updated successfully, but these errors were encountered:
Y instances are cached within the client controller context object by mojit instance guid so that many actions on the same controller can always occur on the same instance.
If all the views of a particular mojit controller are destroyed, that Y instance is never removed.
This is a possible memory leak.
Every time a mojit proxy's private _destroy() function is called, the client needs to do a check to see if there are any more mojit proxies that exist tied to that same instance guid. If not, it should notify the ControllerContext to clear the cache for that guid, and it should dereference the cached Y instance.
The text was updated successfully, but these errors were encountered: