Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Understanding React Native Perf Monitor

Tags:

react-native

What is JSC in the Perf Monitor and what does it represent? Also, what are the two levels of Views in Perf Monitor?

like image 756
Nader Dabit Avatar asked Apr 15 '16 04:04

Nader Dabit


1 Answers

The JSC column represents the size of the JavaScriptCore managed heap -- how your app is allocating JS objects.

The two levels of the Views column is for Views that are on-screen, versus views that are off-screen or merged. You want to try to get those numbers to be as close as possible to avoid unnecessary layout calculation and processing.

like image 69
Matt Hargett Avatar answered Oct 04 '22 21:10

Matt Hargett