Sunday, July 8, 2012

MongoDB Basics: Database Creation

In MongoDB, databases are lazily created when the first insert is performed on a database after the "use xxxx" command is issued.
It works similarly with collections. It is lazily created upon the first insert.

No comments:

Post a Comment