I am considering using MongoDB to store documents that include a list of key/value pairs. The safe but ugly and bloated way to store this is as

[ ['k1' : 'v1'] , ['k2' : 'v2'],  ...]

But document elements are inherently ordered within the underlying BSON data structure, so in principle:

{k1 : 'v1', 
 k2 : 'v2',  ...}

should be enough. However I expect most language bindings will interpret these as associative arrays, and thus potentially scramble the ordering. So what I need to know is:

  • Does MongoDB itself promise to preserve item ordering of the second form.
  • Do language bindings have some API which can extract it ordered form -- even if the usual "convenient" API returns an associative array.

I am mostly interested in Javascript and PHP here, but I would also like to know about other languages. Any help is appreciated, or just a link to some documentation where I can go RTFM.

link|improve this question

1  
the mongodb user forum is the best place to ask these Qs; the mongodb developers are very helpful in answering questions like this and would be able to give you authoritative answers. groups.google.com/forum/#!forum/mongodb-user – Jason S Dec 20 '11 at 14:20
2  
+1 for wanting to RTFM :) – cdeszaq Dec 20 '11 at 14:21
1  
@JasonS thanks for that. One reason I asked here is that the problem involves so many different languages/standards that I didn't know where to look. But you are right, Mongo sits in the centre of them all. – Adrian Ratnapala Dec 20 '11 at 14:32
1  
This is actually the more appropriate place to ask. – Remon van Vliet Dec 20 '11 at 15:11
1  
Well this is where got the answer. – Adrian Ratnapala Dec 21 '11 at 15:39
feedback

1 Answer

up vote 3 down vote accepted

No, MongoDB does not make guarantees about the ordering of fields:

"There is no guarantee that the field order will be consistent, or the same, after an update."

In particular, in-place updates that change the document size will usually change the ordering of fields. For example, if you $set a field whose old value was of type number and the new value is NumberLong, fields usually get re-ordered.

However, arrays preserve ordering correctly:

[ {'key1' : 'value1'}, {'key2' : 'value2'}, ... ]

I don't see why this is "ugly" and "bloated" at all. Storing a list of complex objects couldn't be easier. However, abusing objects as lists is definitely ugly: Objects have associative array semantics (i.e. there can only be one field of a given name), while lists/arrays don't:

// not ok:
db.foo2.insert({"foo" : "bar", "foo" : "lala" });
db.foo2.find();
{ "_id" : ObjectId("4ef09cd9b37bc3cdb0e7fb26"), "foo" : "lala" }

// a list can do that
db.foo2.insert({ 'array' : [ {'foo' : 'bar'}, { 'foo' : 'lala' } ]});
db.foo2.find();
{ "_id" : ObjectId("4ef09e01b37bc3cdb0e7fb27"), "array" : 
      [ { "foo" : "bar" }, { "foo" : "lala" } ] }

Keep in mind that MongoDB is an object database, not a key/value store.

link|improve this answer
Clean... nothing more to add.. +1 – RameshVel Dec 20 '11 at 15:52
Fine, I will do it that way. I still say it is ugly, but it is quite reasonable that MongoDB works that way. "Objects have associative array semantics" is a javascript-ism (normally I wouldn't use the word object for such data structures). From my (superficial) readings about MongoDB, I thought it was a database of BSON documents -- and BSON has a very clear specification, in which elements are ordered. Instead MongoDB is a store of Javascript-like objects (or python-like dictionaries) which happens to use BSON under the hood. Fair enough. – Adrian Ratnapala Dec 21 '11 at 15:45
feedback

Your Answer

 
or
required, but never shown

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