InterviewSolution
| 1. |
What Are Governor Limits In Salesforce? |
|
Answer» In Salesforce, it is the Governor Limits which controls how much data or how many records you can store in the shared databases. Why? Because Salesforce is based on the concept of multi-tenant architecture. In simpler words, Salesforce uses a single database to store the data of multiple clients/ CUSTOMERS. To make sure no single client monopolizes the shared resources, Salesforce introduced the concept of Governor Limits which is strictly enforced by the Apex run-time engine. Governor Limits are a Salesforce developer’s biggest CHALLENGE. That is because if the Apex code ever exceeds the limit, the expected governor ISSUES a run-time exception that cannot be HANDLED. Hence as a Salesforce developer, you have to be very careful while developing your application. Different Governor Limits in Salesforce are:
In Salesforce, it is the Governor Limits which controls how much data or how many records you can store in the shared databases. Why? Because Salesforce is based on the concept of multi-tenant architecture. In simpler words, Salesforce uses a single database to store the data of multiple clients/ customers. To make sure no single client monopolizes the shared resources, Salesforce introduced the concept of Governor Limits which is strictly enforced by the Apex run-time engine. Governor Limits are a Salesforce developer’s biggest challenge. That is because if the Apex code ever exceeds the limit, the expected governor issues a run-time exception that cannot be handled. Hence as a Salesforce developer, you have to be very careful while developing your application. Different Governor Limits in Salesforce are: |
|