current location:Home>Download>Tool download>database server>MongoDB
MongoDB
Classify:Tool download/database server | Release time: 2018-01-23 | visits: 5480 |
Download: 137 |
Latest Downloads
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
The most powerful brain 3
Odd Dust: Damila
Young Journey to the West 2
24 HoursReading Leaderboard
- 1Andrew Tate Announces Plans to Invest $1 Million in $DADDY Coin Once He Reaches 10 Million Followers
- 2Liskov Substitution Principle
- 3Interface Segregation Principle
- 4What's moving Sensex and Nifty
- 5Cristiano Ronaldo Launches New NFT Collection Amidst a Judicial Crisis
- 6Mastering Overflow Scroll Gradient with CSS
- 7Adept Unveils Advanced AI Agents with Multimodal Capabilities
- 8FTX's Proposed Reorganization Plan Faces Legal Challenges Despite Creditor Support
- 9Pseudonymous Analyst Bluntz Predicts Huge Upside Move Is Coming for Ethereum (ETH)-Based Memecoin Pepe (PEPE)
- 10Dormant Bitcoin Wallet From the Satoshi Era Suddenly Comes to Life
- 11Advanced SCSS: Function and Mixins
- 12XRP Can Double to $1 by 2025, but Don't Expect It to Skyrocket from There
- 13Cardano (ADA) Price Ready to Drop ‘Bombshell’ as Secret Catalyst Emerges
- 14Single Responsibility Principle
- 15Doge2014: A New Token to Honor and Celebrate 10 Years of Dogecoin
Latest Tutorials
-
- Go language practical GraphQL
- 1334 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 2733 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 1250 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2105 2024-03-29
MongoDB is a product between a relational database and a non-relational database. It is the most feature-rich among non-relational databases and is most like a relational database. The data structure it supports is very loose and is a json-like bjson format, so it can store more complex data types. The biggest feature of Mongo is that the query language it supports is very powerful. Its syntax is somewhat similar to an object-oriented query language. It can almost implement most functions similar to single-table queries in relational databases, and it also supports indexing of data.
It is characterized by high performance, easy deployment, easy use, and very convenient data storage. The main functional features are:
Oriented to collection storage, it is easy to store object type data.
Mode freedom.
Support dynamic query.
Full indexing is supported, including internal objects.
Support query.
Supports replication and failure recovery.
Use efficient binary data storage, including large objects (such as videos, etc.).
Automatically handle fragmentation to support cloud-level scalability
Supports RUBY, PYTHON, JAVA, C, PHP and other languages.
The file storage format is BSON (an extension of JSON)
Accessible via the web