Aggregation Pipelines have a limit of:
2 MB document and 100 MB RAM
16 MB document and 100 MB RAM
No limit on document and 100 MB RAM
2 MB document and no limit on RAM
In a collection that contains 100 post documents, what does the following command do? db. posts. find().skip(5).limit(5)
Skip and limit nullify each other. Hence returning the first five documents.
Skips the first five documents and returns the next five
Limits the first five documents and then return them in reverse order
Skips the first five documents and returns the sixth document five times
Which operations add new documents to a collection?
Create
update
insert
delete