Posts Tagged ‘mongodb’

MongoDB Basic Operations

MongoDB
This is part of MongoDB tutorial series, for this section we’ll learn about MongoDB basic operations in shell.

MongoDB is document oriented database, so rather than row in table we have document in collection.
Continue reading »

Beginner Step Into MongoDB

MongoDBAfter installing MongoDB, I’m really excited to learn more about MongoDB.

What is it anyway?

MongoDB is document oriented database, which bridges the gap between key-value stores (which are fast and highly scalable) and traditional RDBMS systems (which provide rich queries and deep functionality). It’s written in the C++ and has been developed since October 2007 by 10gen.
Continue reading »

My First Step Into MongoDB – Installing MongoDB on Ubuntu

MongoDBLately MongoDB become more and more popular in NoSQL movement. For you who haven’t heard about it, MongoDB is a scalable, high-performance, open source, document-oriented database. I always keep my eyes on MongoDB, but never have a chance to really taste the goods. So, right now I want to jump and tame the beast.
Continue reading »

[Link] MongoEngine

MongoEngine is a Document-Object Mapper for working with MongoDB from Python. It has similar API with Django ORM.