tags:

views:

198

answers:

1

Hi,

The limitation of one document in MongoDB is 4Mo. I have some documents really heavy with a lot of data.

How I know my document's size inside MongoDB with the ruby driver ?

+1  A: 

You can use BSON.serialize and find the length of the resulting byte buffer. See http://www.mongodb.org/display/DOCS/BSON#BSON-Ruby for an example of using BSON.serialize.

kristina