flâneur — a map of the web's best reading

mongo/src/mongo/db/query/README.md at master · mongodb/mongo

github.com · 498 words · saved by 1 readers

Disclaimer: This is a work in progress. It is not complete and we will do our best to complete it in a timely manner. The query system generally is responsible for interpreting the user's request, finding an optimal way to satisfy it, and to actually compute the results. It is primarily exposed through the find and aggregate commands, but also used in associated read commands like count, distinct, and mapReduce. Here we will divide it into the following phases and topics: In this documentation we focus on the process for a single node or replica set where all the data is expected to be found locally. We plan to add documentation for the sharded case in the src/mongo/s/query/ directory later. The following commands are generally maintained by the query team, with the majority of our focus given to the first two. The code path for each of these starts in a Command, named something like MapReduceCommand or FindCmd. You can generally find these in src/mongo/db/commands/. The first round of

Explore this link on the map →

saved by

related reading