The following update query takes 1.7 seconds in Blazegraph:
DELETE {<http://my.site/Statement> :count ?existingObject}
INSERT {<http://my.site/Statement> :count "19" . }
WHERE {<http://my.site/Statement> :count? ?existingObject}
The query is part of a transaction, called using Sesame's prepareUpdate
, where setAutoCommit
has been set to false
(time does not include commit time, performed later).
I have an SSD drive with an i7 processor.
Does anybody have a solution or alternative approach?