Skip to content

Instantly share code, notes, and snippets.

@bcicen
Created June 30, 2014 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcicen/26329aa52dfb44020dc4 to your computer and use it in GitHub Desktop.
Save bcicen/26329aa52dfb44020dc4 to your computer and use it in GitHub Desktop.
var dCursor = db.realtime.find( { profileId: "673772" });
var dDocument = dCursor.hasNext() ? dCursor.next() : null;
getsize = function(doc) {
var dSize = Object.bsonsize(doc);
print(dSize)
}
dCursor.forEach(getsize);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment