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 tripper.dataset.save_data() creates a json-ld string that is sent to rdflib.Graph.parse(format="json-ld") for each documented resource. This is very slow for when documenting many resources.
This can probably be speeded up a lot if we documents all the resources in a single json-ld and only calls rdflib.Graph.parse(format="json-ld") once. The json-ld document could use the "@graph" keyword like this:
The
tripper.dataset.save_data()
creates a json-ld string that is sent tordflib.Graph.parse(format="json-ld")
for each documented resource. This is very slow for when documenting many resources.This can probably be speeded up a lot if we documents all the resources in a single json-ld and only calls
rdflib.Graph.parse(format="json-ld")
once. The json-ld document could use the "@graph" keyword like this:The text was updated successfully, but these errors were encountered: