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 implement an interpreter cache for expressions we need to capture the function volatility. I propose to add the following two categories:
VOLATILE - Function return can change at any time
IMMUTABLE - Function returns the same result for the same arguments
The cache should be stored in the interpreter or interpreter context and thus does NOT depend on #18 as it should be unbounded. It should be possible to disable the interpreter cache though.
The text was updated successfully, but these errors were encountered:
To implement an interpreter cache for expressions we need to capture the function volatility. I propose to add the following two categories:
VOLATILE
- Function return can change at any timeIMMUTABLE
- Function returns the same result for the same argumentsThe cache should be stored in the interpreter or interpreter context and thus does NOT depend on #18 as it should be unbounded. It should be possible to disable the interpreter cache though.
The text was updated successfully, but these errors were encountered: