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 current caching mechanism uses a scoped (per event) Map of results to return early. This is fine but at the same time CM is still generating, and keeping in memory, "duplicate" rule/filters that are never used due to the cached results.
The caching mechanism can be simplified, and rules/filters can be de-duplicated, by combining the two using a memoize promise.
The text was updated successfully, but these errors were encountered:
The current caching mechanism uses a scoped (per event) Map of results to return early. This is fine but at the same time CM is still generating, and keeping in memory, "duplicate" rule/filters that are never used due to the cached results.
The caching mechanism can be simplified, and rules/filters can be de-duplicated, by combining the two using a memoize promise.
The text was updated successfully, but these errors were encountered: