Closed
Description
As mentioned https://docs.arangodb.com/2.8/HttpAqlQueryCursor/AccessingCursors.html
, there is an options
flag which lets us control profile
for additional query profiling. Turns out it is enabled by default and I would like to turn it off.
Currently, there is no option to control this from AQL Query Options.
It should also be possible to fetch the extra.stats
parameter returned in the cursor output. It is only possible to access this when using driver.executeAqlQuery
via cursorResult.getEntity.getExtra
. However, it is not available via driver.executeDocumentQuery
.
Which one out of the both should be used and when?