Docs Menu
Docs Home
/
MongoDB Manual
/

Development Checklist

On this page

  • Data Durability
  • Schema Design
  • Replication
  • Sharding
  • Drivers

The following checklist, along with the Operations Checklist, provides recommendations to help you avoid issues in your production MongoDB deployment.

Data in MongoDB has a dynamic schema. Collections do not enforce document structure. This facilitates iterative development and polymorphism. Nevertheless, collections often hold documents with highly homogeneous structures. See Data Modeling Concepts for more information.

Back

Operations Checklist