The MongoDB shell prints binary data as a Base64-encoded string wrapped in what looks like a function call:

"_id" : BinData(0,"e8MEnzZoFyMmD7WSHdNrFJyEk8M=")

What does the "0" mean?

link|improve this question

55% accept rate
feedback

2 Answers

up vote 3 down vote accepted

http://www.mongodb.org/display/DOCS/Overview+-+The+MongoDB+Interactive+Shell#Overview-TheMongoDBInteractiveShell-BinData

The BSON BinData datatype is represented via class BinData in the shell. Run help misc for    more information.

> new BinData(2, "1234")
BinData(2,"1234")

from the shell

help misc
b = new BinData(subtype,base64str)  create a BSON BinData value

The 0 in your case is the BSON subtype

http://bsonspec.org/#/specification

subtype ::= "\x00"  Binary / Generic
|   "\x01"  Function
|   "\x02"  Binary (Old)
|   "\x03"  UUID
|   "\x05"  MD5
|   "\x80"  User defined

Similar question on this thread

http://groups.google.com/group/mongodb-dev/browse_thread/thread/1965aa234aa3ef1e

link|improve this answer
Interesting. Are those subtypes used for anything? – Thilo Feb 18 at 7:03
I guess so :-). The best place for ask is the BSON group. Definetely, there is a reason for the difference between the new \x00 and the historical \x02 (groups.google.com/group/bson/browse_thread/thread/…). For UUID and MD5 (my opinion) is for optimisation. Both are fixed length hexadecimal ( 16-byte/128-bit/32 hexadecimal digits, layout bit different UUID has -) and widely used, driver implementors could optimise the read/write. – marcolinux Feb 18 at 7:39
I don't know what a driver could optimize here. All of the binary types are stored as length(int32) subtype-byte bytes*. Fixed length or not, the length is stored. And data is stored as raw bytes (not hexadecimals). Maybe an option for data validation? Or for display purposes: UUID could be displayed nicer than BinData(3,........)? – Thilo Feb 18 at 9:29
feedback

I believe they they correspond to the BSON subtypes:

subtype ::= "\x00" Binary / Generic | "\x01" Function | "\x02" Binary (Old) | "\x03" UUID | "\x05" MD5 | "\x80" User defined

Looking at that, it appears that 0 is almost always a valid choice.

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.