function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
KMK91KMK91 

what are the governor limits in salesforce?can any one send me all governor limits in salesforce?

Best Answer chosen by KMK91
jyothsna reddy 5jyothsna reddy 5
 Governor limits are runtime limits enforced by the Apex runtime engine to ensure that code does not misbehave

Governor limits are Salesforce’s way of forcing you to write efficient, scalable code.

The good:

Governor limits prevent other orgs from writing bad code and taking up all the cloud CPU.
Coding limits in general are completely unique to Apex – consider it job security!
You have a friend that will teach you how to dominate these limits!

The bad:

These are hard limits on your org preventing you, for example, from doing too many SOQL queries in a trigger (max: 100 queries).
Upgrading your edition or paying Salesforce more money will not increase your limits! The only workaround is to understand how to navigate around them.

please check below links.I hope that will help you

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_gov_limits.htm

All Answers

Andy BoettcherAndy Boettcher
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_gov_limits.htm
jyothsna reddy 5jyothsna reddy 5
 Governor limits are runtime limits enforced by the Apex runtime engine to ensure that code does not misbehave

Governor limits are Salesforce’s way of forcing you to write efficient, scalable code.

The good:

Governor limits prevent other orgs from writing bad code and taking up all the cloud CPU.
Coding limits in general are completely unique to Apex – consider it job security!
You have a friend that will teach you how to dominate these limits!

The bad:

These are hard limits on your org preventing you, for example, from doing too many SOQL queries in a trigger (max: 100 queries).
Upgrading your edition or paying Salesforce more money will not increase your limits! The only workaround is to understand how to navigate around them.

please check below links.I hope that will help you

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_gov_limits.htm
This was selected as the best answer
raja shekar 56raja shekar 56

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_gov_limits.htm
Amith RaoAmith Rao
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_gov_limits.htm