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
To further speed-up access, we need to allow the memoization/caching of values.
What this means
Right now when you access a Bundle, the system will always run a message finding algorithm. We can do better.
For a given Locale, message-id, and variables (aka Input) we can check if the value isn't already in the Dictionary<Input, String> if it is, we return it otherwise we run the resource finding algorithm.
The text was updated successfully, but these errors were encountered:
Motivation
To further speed-up access, we need to allow the memoization/caching of values.
What this means
Right now when you access a Bundle, the system will always run a message finding algorithm. We can do better.
For a given
Locale
,message-id
, andvariables
(akaInput
) we can check if the value isn't already in theDictionary<Input, String>
if it is, we return it otherwise we run the resource finding algorithm.The text was updated successfully, but these errors were encountered: