zoukankan      html  css  js  c++  java
  • MongoDB

    MongoDB is an open-source document database that provides high performance, high availability, and automatic scaling.

    Document Database

    A record in MongoDB is a document, which is a data structure composed of field and value pairs. MongoDB documents are similar to JSON objects. The values of fields may include other documents, arrays, and arrays of documents.

    The advantages of using documents are:

    • Documents (i.e. objects) correspond to native data types in many programming languages.
    • Embedded documents and arrays reduce need for expensive joins.
    • Dynamic schema supports fluent polymorphism.

    Key Features

    High Performance

    MongoDB provides high performance data persistence. In particular,

    • Support for embedded data models reduces I/O activity on database system.
    • Indexes support faster queries and can include keys from embedded documents and arrays.

    Rich Query Language

    MongoDB supports a rich query language to support read and write operations (CRUD) as well as:

    High Availability

    MongoDB’s replication facility, called replica set, provides:

    • automatic failover and
    • data redundancy.

    replica set is a group of MongoDB servers that maintain the same data set, providing redundancy and increasing data availability.

    Horizontal Scalability

    MongoDB provides horizontal scalability as part of its core functionality:

    • Sharding distributes data across a cluster of machines.
    • Tag aware sharding allows for directing data to specific shards, such as to take into consideration geographic distribution of the shards.

    Support for Multiple Storage Engines

    MongoDB supports multiple storage engines, such as:

    In addition, MongoDB provides pluggable storage engine API that allows third parties to develop storage engines for MongoDB.

  • 相关阅读:
    手机抓包方法
    IBM appscan 9.0破解版分享
    C#打开新页面
    双城记
    卸载趋势
    测试环境搭建
    C#常用函数→ASP.NET篇
    C#常用函数--通用篇
    读>>>>白帽子讲Web安全<<<<摘要→我推荐的一本书→1
    TCP/IP网络编程技术基础
  • 原文地址:https://www.cnblogs.com/huey/p/6116493.html
Copyright © 2011-2022 走看看