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
6.6.6.2) Otherwise, compare reference against every item in the array associated with the active property member of node. If there is no item equivalent to reference, append reference to the array. Two JSON objects are considered equal if they have equivalent key-value pairs.
The text was updated successfully, but these errors were encountered:
dtivel
changed the title
JsonLdProcessor.Frame(...): poor performance on large sets
JsonLdProcessor.Frame(...): poor performance on large sets of objects
Jul 3, 2018
Version 1.0.4
From http://www.w3.org/TR/json-ld-api/#node-map-generation:
This is implemented in json-ld.net as an n-squared algorithm, where n is the number of elements in the set.
JsonLdProcessor.Frame(...)
callsJsonLdApi.GenerateNodeMap(…)
, which for each element in an array callsJsonLdUtils.MergeValue(…)
, which in turn callsJsonLdUtils.DeepCompare(…)
on the current set.The text was updated successfully, but these errors were encountered: