Heap size is the amount of memory needed to store object variables in memory. This post will list out ways to handle heap size for apex code optimization.
Asynchronous apex
While Solutioning, should we consider the scalability of the Salesforce Application? Should we even think about scalable solutions in Salesforce?
Asynchronous process helps us in doing long-running operations in the background so that it will not impact application performance. This post has Salesforce Interview Question for Asynchronous Apex.
Loops are the primary source of CPU time consumption. If we have used nested loops then it will consume resources quickly. This post will help us in optimizing the loop …
Salesforce apex is used to customize the Salesforce application. We should write proper code for customization for better performance. This post will help in optimizing Salesforce apex code.
Salesforce has four asynchronous apex which can handle long running job. This post will explain where to avoid batch apex and use Queueable Class instead.
Salesforce Queueable Job is very important for long running data updates. We must notify when particular data update is finished. This feature was not available till winter 2020 release. Salesforce …
Asynchronous Apex Asynchronous Apex is used to run processes in a separate thread, at a later time. An asynchronous process is a process or function that executes a task in …