Is there a method to determine the size of a specific instance of a model/document in a MongoDB using Mongoid?

link|improve this question
I actually figured out a solution to get the number of bytes of a specific document: BSON.serialize(Model.first.as_document).size – Tom Johnson Jan 7 at 22:26
feedback

1 Answer

up vote 2 down vote accepted

So you can get the theoretical size of the document as you illustrated in your comment (BSON.serialize(Model.first.as_document).size).

However, it should be noted that this may not be the actual size of the object "on disk". MongoDB will automatically add a buffer to new documents to allow them to grow in-place. When it comes to getting the actual size on disk for one specific document I do not believe this is possible.

However, you can get an average buffer by using db.collection_name.stats().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.