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
A concurrent cache should optimize for concurrent calls to the same expensive operation. The operation parameters should act as the hashed key to a hash map while only a weak reference is kept to the value. When concurrent calls are made, only one call should pass through and all calls should receive a strong reference to the same result. When all consumers exit, the GBC should cleanup the reference & the entry.
The text was updated successfully, but these errors were encountered:
A concurrent cache should optimize for concurrent calls to the same expensive operation. The operation parameters should act as the hashed key to a hash map while only a weak reference is kept to the value. When concurrent calls are made, only one call should pass through and all calls should receive a strong reference to the same result. When all consumers exit, the GBC should cleanup the reference & the entry.
The text was updated successfully, but these errors were encountered: