EXPRESS
Stages for a limited set of queries that can bypass regular query planning to use optimized index scan plans
Detailed Description​
In MongoDB explain plans, EXPRESS refers to a group of internal execution stages introduced in MongoDB 8.0. These stages are used for a limited set of queries that can bypass the regular query planner and use highly optimized index scan plans.
In simple terms:
When you see an EXPRESS stage (such as EXPRESS_IXSCAN or EXPRESS_DELETE), MongoDB was able to quickly recognize and run your query using a shortcut plan, making it faster and more efficient.
Examples of EXPRESS stages:
EXPRESS_IXSCAN: Optimized index scanEXPRESS_CLUSTERED_IXSCAN: Optimized clustered index scanEXPRESS_DELETE: Optimized delete operationEXPRESS_UPDATE: Optimized update operation
These stages mean MongoDB took a fast path to execute your query, skipping some of the usual planning steps.
Additional Links​
Search online​
If this article doesn't have the information you need you can try searching online. Remember, you can contribute suggestions to this page.