ArangoDB real execution query time -


hi have question.

i using arango web interface , arangosh, checked query execution time, , result below.

var q = db._query('...my query statement...') q.getextra()

{   "stats" : {     "writesexecuted" : 0,     "writesignored" : 0,     "scannedfull" : 24518,     "scannedindex" : 287631,     "filtered" : 0,     "httprequests" : 0,     "executiontime" : 6.2454559803   },   "warnings" : [] } 

i wonder whether exeutiontime meaning find, generate result time, network , etc time or not.
in mysql, execution time seperated network time, how arangodb deal it?

the execution time reported time server spends actual query execution. includes time parsing query, creating execution plan, loading collections if not loaded, retrieving data , creating result set. not include network transfer time, and/or http processing time.


Comments

Popular posts from this blog

vb.net - How to ignore if a cell is empty nothing -

Sort a complex associative array in PHP -

recursion - Can every recursive algorithm be improved with dynamic programming? -