뭐든 즐기면서 ;)

MongoDB explain / MongoDB 실행 계획 본문

DB(데이타베이스)/MongoDB

MongoDB explain / MongoDB 실행 계획

Tada.*+ 2023. 6. 2. 20:16
728x90
> db.collection.find({field: field값}).explain("executionStats")

실행 결과에서 주목해야 할 field

  • nReturned : return 된 개수
  • totalDocsExamined : 스캔한 도큐먼트 개수
  • executionTimeMillis : 실행 시간
728x90
Comments