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
Ken Koellner @ EngagewareKen Koellner @ Engageware 

What calls contribute to FIELDS_DESCRIBE limit?

Does anyone know what calls contribute to the FIELDS_DECRIBES limit?  I read that describes limits were elimnated in '14 but some must still exist as I see the following in Dev Console Execution Overview...

User-added image
The following code does not contribute to the limit ...

for (Integer i=0; i<191; i++) {
	Schema.DescribeFieldResult sfField = Account.Industry.getDescribe();
}
Ken Koellner @ EngagewareKen Koellner @ Engageware
This looks like it contributes but it's not enforcing the limit.  
for (Integer i=0; i<191; i++) {
//	Schema.DescribeFieldResult sfField = Account.Industry.getDescribe();
    Map<String,Schema.SObjectField> mapFieldAccess = Schema.Account.getSObjectType().getDescribe().fields.getMap();
}

User-added image