I'm using d2r-query of D2RQ to make some SPARQL Query, I'm using commande line. Please, how can I get a response time?
d2r-query myMappedData.ttl "SELECT * {?s ?p ?o} LIMIT 1000"
Is there other tools to use to get the response time?
I'm using d2r-query of D2RQ to make some SPARQL Query, I'm using commande line. Please, how can I get a response time?
d2r-query myMappedData.ttl "SELECT * {?s ?p ?o} LIMIT 1000"
Is there other tools to use to get the response time?
Copyright © 2021 Jogjafile Inc.
Hi I have found a solution and I would shar it with you. So you should edit the d2_quey.java file and get the date before and after the query code treatment and calculate the timeAfterTreatment - timeBeforeTreatment
Like the code bellow :
Before this code (Treatment query)
And add this code in the end
Good luck