MongoDB : How Does MongoDB store DATA
MongoDB use documents to store DATA. What are Documents ? Documents are nothing but a way to organize and store data as set of field-value pairs. For eg:
{
name: "Apple", <- Field: Value
rating: 8, <- Field: Value
review: "Ni...
ayushparui.hashnode.dev2 min read