Contents
What is octane score Salesforce?
Octane is a benchmark developed by Google that measures JavaScript performance. A higher Octane score correlates to faster page load times. Octane factors in your computer hardware and browser choice. Using the latest version of Salesforce-supported browsers generates higher Octane scores.
How do I increase my octane score?
You can try the following steps to boost a client’s Octane score:
- Ensure laptops are fully charged or connected to a power source.
- Close other applications running on the client device, if possible.
- Reset browser settings to original defaults, if possible.
- Remove unused or unnecessary browser plugins and extensions.
How to improve page load times in Visualforce?
To improve Visualforce page load times: Cache any data that is frequently accessed, such as icon graphics. Avoid SOQL queries in your Apex controller getter methods. Limiting the data coming back from SOQL calls in your Apex controllers. For example, using AND statements in your WHERE clause, or removing null results
How to reduce view state size in Visualforce?
For more information, see “Developer Console Functionality” in the Salesforce Help. The view state size of your Visualforce pages must be under 170KB. By reducing your view state size, your pages can load quicker and stall less often.
What should the state size of Visualforce pages be?
The view state size of your Visualforce pages must be under 170KB. By reducing your view state size, your pages can load quicker and stall less often. Use the transient keyword in your Apex controllers for variables that aren’t essential for maintaining state and aren’t necessary during page refreshes.
What can I do to improve the performance of Visualforce?
Visualforce is designed to provide developers with the ability to match the functionality, behavior, and performance of standard Salesforce pages. If your users experience delays, unexpected behavior, or other issues specifically around Visualforce, consider the following optimization options: