1.

What are Governor limits in Salesforce?

Answer»
  • Governor limits control how much data a SHARED database can store. They help to make sure that no one monopolizes the shared resources like storage, CPU, and memory. Whenever the Apex CODE exceeds the limit, it issues a runtime exception that cannot be handled.
  • The following list GIVES some of the governor limits in Salesforce:
    • Push notification limits
    • Per-TRANSACTION Apex limits
    • Size-Specific Apex limits
    • Miscellaneous Apex limits
    • Static Apex limits
    • Email limits
  • Examples of governor limits in Salesforce:
    • The total number of sendEmail methods permitted is 10.
    • The total number of records retrieved by a SOQL query is 50,000.
    • Maximum CPU time on the Salesforce servers is 10,000ms on SYNCHRONOUS Apex.
    • The total number of callouts(web services calls or HTTP requests) in a transaction is 100.


Discussion

No Comment Found