EXPRESS_UPDATE
Short Description
Optimized update operation
Detailed Description​
EXPRESS_UPDATE is a MongoDB execution stage (introduced in version 8.0) that represents a fast, optimized path for processing certain update operations.
In simple terms:
- When you see EXPRESS_UPDATE in an explain plan, MongoDB quickly recognized your update query as a straightforward operation that matches certain criteria.
- Instead of using the regular, more complex query planner, MongoDB uses an "express" shortcut, allowing updates to be executed much faster and with less resource usage.
When does it happen?
- This occurs for simple updates—typically when the query can be directly satisfied by an efficient index scan.
What do you need to do?
- Nothing special! MongoDB automatically uses EXPRESS_UPDATE if your update statement matches the optimized pattern.
Summary:
When you see EXPRESS_UPDATE, MongoDB is using its fastest path to process your update—handling the operation with maximum efficiency.
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.