Is there a method to determine the size of a specific instance of a model/document in a MongoDB using Mongoid?
|
feedback
|
|
So you can get the theoretical size of the document as you illustrated in your comment ( 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 | |||
|
feedback
|
BSON.serialize(Model.first.as_document).size– Tom Johnson Jan 7 at 22:26