Most efficient way to clear a named graph?
问题 I am working with an instance of Ontotext GraphDB and often want to clear a named graph with a large number of triples. Currently, my technique involves issuing a SPARQL command to the graph server, which searches and matches a triple pattern of every triple in the named graph: DELETE { GRAPH example:exampleGraph { ?s ?p ?o }} WHERE {?s ?p ?o .} When there are a lot of triples, this approach often takes quite some time to clear the named graph. I am wondering whether there is a more efficient