URL Shortening is required when we send email with URL link or sending SMS to customers. This post will give detail on using Cuttly Url Shortener in Salesforce.
apex
SOQL optimization is important for application performance. This post will give ideas to make SOQL query selective so that optimizer will optimize soql.
- ApexArchitectureSalesforce
Optimize Apex Code by Metadata Caching
by Dhanik Lal Sahni January 20, 2022Most of the time we need metadata of entities and fields to make dynamic pages. This post will give detail on how to optimize apex code by metadata caching.
We use debug statements in Salesforce apex to debug code which can impact application performance. This post will help in understanding how to optimize code by disabling debug mode in production.
Most of the time we need to use the existing apex method which accepts custom wrapper objects. This post will help in sending wrapper object to apex from LWC.
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 in apex Code.
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.
- ApexLightningSalesforce
Dynamic Record Page Creation using FieldSet
by Dhanik Lal Sahni November 18, 2021We usually get the requirement to create different components for creating different object records. This post will explain about dynamic record page creation using fieldset.
- ApexArchitectureIntegrationSalesforce
Avoid Batch Apex and Use Queueable Class
by Dhanik Lal Sahni November 5, 2021Salesforce has four asynchronous apex which can handle long running job. This post will explain where to avoid batch apex and use Queueable Class instead.
- ApexLightningSalesforce
Schedule Email alerts based on Business Hours
by Dhanik Lal Sahni September 2, 2021Schedule email alert based on business hour is one of important requirement. This post will give step by step information to schedule email alert in Salesforce.