Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does mongodb create database/collection on the fly

Mongodb is cool enough to create the database/collection on the fly, if we run a code similar to

db.store.save({a: 789});

It automatically creates store collection and add a document to it.

My javascript understanding says it is not possible to call a method on an undefined property of db object. It should have resulted in some kind of error/exception.

I am curious to understand the happenings behind the scene and if there is any helpful link please point me to those. Googling did not help me much.

like image 754
dopeddude Avatar asked Jan 21 '15 09:01

dopeddude


2 Answers

In JavaScript there is a way to define a function that will be executed when an undefined method is called.

Example:

var o = {
  __noSuchMethod__: function(id, args) { console.log(id, '(' + args.join(', ') + ')'); }
};

o.foo(1, 2, 3);
o.bar(4, 5);
o.baz();

// Output
// foo (1, 2, 3)
// bar (4, 5)
// baz ()

Note this is a non-standard feature and today only works in Firefox.

I do not know how MongoDB implemented this feature, but I'm just responding in order to report that can be done this way.

Fot more details see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/noSuchMethod

like image 150
Leonardo Delfino Avatar answered Sep 21 '22 11:09

Leonardo Delfino


As I recall in a NodeJS environment you must do something like this to actually create a record: db.get('collectionName').insert({..something...}); or db.get('collectionName').save({...something...}); but you don't get to use the collection name as a property of db.

The line you're mentioning is only used in MongoDB shell, which is not Javascript. I guess you're misunderstanding what's MongoDB shell and what's a MongoDB driver.

So long story short MongoDB (driver) is not able to access an undefined property.

EDIT

In response to your comment..

MongoDB JS driver's GitHub page pretty much points out how to insert a field and always uses the syntax I mentioned: https://github.com/mongodb/node-mongodb-native

As for what you're using in the shell it's pretty clear that you can't just use Javascript in a command shell. So I guess I'll point you to a place in which you can see in what language was MongoDB developed: http://www.mongodb.org/ pretty much the first line says it's written in C++.

Hope this helps clarify your question

like image 25
martskins Avatar answered Sep 23 '22 11:09

martskins