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

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -