Why is the Unit of Work pattern considered fast and efficient when working with an ORM

rdbmsunit-of-work

In working with Doctrine 2 I came across the following paragraph.

In fact, since Doctrine is aware of all your managed entities, when
you call theflush() method, it calculates an overall changeset and
executes the most efficient query/queries possible. For example, if
you persist a total of 100 Product objects and then subsequently call
flush(), Doctrine will create a single prepared statement and re-use
it for each insert. This pattern is called Unit of Work, and it's used
because it's fast and efficient

I am not up to speed on relational databases and ORM theory so I was wondering why is the Unit Of Work pattern considered fast and efficient?

Best Answer

One reason the Unit Of Work pattern can be efficient, as the paragraph states, is because it can batch several operations and reuse resources.

Using Unit of Work provides a context that can contain several operations into a single transaction that might otherwise be difficult to operate on together.

Also, not only can the Unit of Work use a single prepared statement for efficiency, but it may also be able to submit many inserts or updates to the database in a single call - if the database driver supports it - rather than executing each insert or update individually.