Skip to main content
Bulkification of triggers

Ensure your Apex triggers can process data in bulks and properly deal with larger volumes.

Lorenzo Frattini avatar
Written by Lorenzo Frattini
Updated over a week ago

Rationale

Bulkifying Apex code  refers to the concept of making sure the code properly handles more than one  record at a time. When a batch of records initiates Apex, a single instance  of that Apex code is executed, but it needs to handle all of the records in  that given batch.  

Scope 

  • Apex triggers

Did this answer your question?