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 Value property of IElementNavigator is accessed pretty frequently by all the supporting infrastructure (Validator, FhirPath evaluator, serializer) and therefore needs to be fast. The current implementation will frequently call out to methods that parse and serialize raw values - which takes too much time.
I propose we cache this property in the PocoNavigator.
The text was updated successfully, but these errors were encountered:
Note, the PocoNavigator is now an empty shell, just calling ITypedElement.Value, which is generally implemented by TypedElement.Value (which still has the same problem) or PocoElementNode.Value (which just does some casting). So, now, we should look at TypedElement.Value.
The Value property of IElementNavigator is accessed pretty frequently by all the supporting infrastructure (Validator, FhirPath evaluator, serializer) and therefore needs to be fast. The current implementation will frequently call out to methods that parse and serialize raw values - which takes too much time.
I propose we cache this property in the PocoNavigator.
The text was updated successfully, but these errors were encountered: