in N1QL, responses are JSON and include metadata. the metrics field contains statistics, including the time taken to execute the query (so notably elapsedTime and executionTime).
in the 2.2.0 developer preview of the Java SDK, you can access these metrics as a QueryMetrics object using the info() method on the QueryResult.
in
N1QL
, responses are JSON and include metadata. themetrics
field contains statistics, including the time taken to execute the query (so notablyelapsedTime
andexecutionTime
).in the
2.2.0 developer preview
of the Java SDK, you can access these metrics as aQueryMetrics
object using theinfo()
method on theQueryResult
.