Viewing a list of records is slow on the first attemptIssue Users can face slowness when loading a list of records for the first time.This is not always easy to reproduce. CauseThe first transaction will be impacted as the cache is rebuilding. You will likely see high cache build time and possibly high SQL time in the localhost log entry for the slow transaction, such as in this example:total time: 0:01:38.808, processing time: 0:01:38.808, SQL time: 0:01:28.116 (count: 11,843), ACL time: 0:00:00.051, UI Action time: 0:00:00.014, Cache build time: 0:00:44.836 This is because the platform will go directly to the database which is required to build the cache.ResolutionUsers should only face this on the first loading of the list.Once the cache has rebuilt all transactions should perform as expected. This can be more noticeable on sub-production instances or instances with low traffic as there are fewer transactions to rebuild the cache before hitting peak user activity.