1. 程式人生 > >MongoDB 集合(Collection)對應的物理檔案

MongoDB 集合(Collection)對應的物理檔案

dbpath下是清一色的collection-n-***與index-n-***開頭的物理檔案,如何知道某一個集合與其對應與其對應的物理檔案? 

db.collection_name.stats() 返回的結果包含集合資料對應的物理檔案 db.collection_name.stats({indexDetails:true}) 返回的結果包含集合資料和索引對應的物理檔案

官方有db.collection.stats用法的詳細資訊:https://docs.mongodb.com/manual/reference/method/db.collection.stats/