Skip to content

Commit eb447de

Browse files
committed
added mongoDB
1 parent a4e4cb0 commit eb447de

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

storage/mongodb.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# MongoDB
2+
##Introduction
3+
[MongoDB](http://www.mongodb.org) is a scalable, high-performance, open source NoSQL database. Its known for its document oriented storage. The schema is dynamic and stores JSON style documents. This makes it good choice for rapid development.
4+
5+
The replication and auto-sharding functionalities along with in database MapReduce feature makes it a great data processing engine.
6+
7+
MongoDB can import and export data in the JSON format with out any effort. MongoDB uses extended JSON called BSON to store binary data.
8+
9+
MongoDB is available for all major platforms. Drivers are available for all most all programming languages.
10+
11+
12+
## Links
13+
### Beginner
14+
1. MongoDB [download](http://www.mongodb.org/downloads)
15+
2. [Try MongoDB online](http://www.mongodb.org/downloads#)
16+
17+
### Advanced
18+
1. [SQL to Mongo](http://www.mongodb.org/display/DOCS/SQL+to+Mongo+Mapping+Chart)
19+
2. [BSON](http://bsonspec.org)
20+
3. [MongoEngine](http://mongoengine.org/) is a Document-Object Mapper for Python
21+
4. [MapReduce](http://www.mongodb.org/display/DOCS/MapReduce) with MongoDB
22+
5. [Using MongoDB for Real-time Analytics](http://blog.mongodb.org/post/171353301/using-mongodb-for-real-time-analytics)
23+
24+
25+
26+

0 commit comments

Comments
 (0)