Storage options in MongoDB

Some data can be stored in collection, multiple collections, gridFS and bucket.
Is there any other option of storage?

Hi @sps

MongoDB stores data in the form of Documents, grouped by Databases and Collections (see Databases and Collections). All the other types you mentioned are different models, but they all have databases & collections underneath.

There are different collection types, such as capped collection or time series new in 5.0, but those build on the basic collections concept.

Best regards
Kevin

Thanks a Lot for your help…

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.