Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mongodb の .explain() のように、couchbase サーバーの N1QL でクエリ時間を取得する簡単な方法はありますか?
のようなクエリがSELECT c.name, c.description from customer cあり、時間を追跡したいと思います。
SELECT c.name, c.description from customer c
ではN1QL、応答は JSON であり、メタデータが含まれています。metricsフィールドには、クエリの実行にかかった時間を含む統計が含まれています (特にとelapsedTime) executionTime。
N1QL
metrics
elapsedTime
executionTime
Java SDK の では、のメソッドを使用して、これらのメトリックにオブジェクト2.2.0 developer previewとしてアクセスできます。QueryMetricsinfo()QueryResult
2.2.0 developer preview
QueryMetrics
info()
QueryResult