Native performance monitor

This seems like a silly question, but what do the various numbers mean to respond to their own performance monitor? I could not find in the docs .

reaction-based performance monitor

I understand RAM. What others? What do two separate view numbers mean? Is it frames per second? What should I read to become competent in how to use this tool? How reliable is this tool? What milestones should I aim for?

+6
source share
1 answer

Thanks to @diedu for posting the link (to a post that has a comment w / this youtube file ):

Here is a basic list of what each of these things represents.

  • RAM: memory
  • AO: Javascript heap / memory. Will only be updated after garbage collection.
  • Views: 2 rooms. The top number is the number of views on the screen, and the bottom is the total number of views in the component. The lower number is usually larger, but usually indicates that you have something that can be improved / reorganized.
  • User Interface: Basic Frames per Second
  • JS (not pictured in Q): javascript frames per second. not js rendering, but still good for monitoring.

Hope this helps someone.

+12
source

Source: https://habr.com/ru/post/1012953/


All Articles