My properties are as follows for my database:
spatial.enabled = true
edge.properties = true
query.all.graphs = false
query.timeout = 20m
virtual.transparency = false
preserve.bnode.ids = false
(1) Is there a significant runtime difference among the various content types when adding triples to Stardog? I'm currently using text/turtle
, but I also see support in the Pystardog codebase for other content types.
(2) Is there a significant runtime different between using stardog.content.Raw
and stardog.content.File
when adding triples?
(3) Should I add all my triples, at once, in bulk? Or, should I perform some sort of pagination when adding these triples?