You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The lack of JIT compilation in React Native's runtime really slowed down the compute.
the JS engine in React Native (both JSC and Hermes) doesn't do JIT compilation which slows it down a lot
Possible Solution
Very Vague idea, I am thinkin about pre-loading which is gonna create a new Bridge (I think that's gonna be faster than webview) and then if you want to create new process to compute JS, you can either choose webview or a new bridge.
The text was updated successfully, but these errors were encountered:
Why
The lack of JIT compilation in React Native's runtime really slowed down the compute.
the JS engine in React Native (both JSC and Hermes) doesn't do JIT compilation which slows it down a lot
Possible Solution
Very Vague idea, I am thinkin about pre-loading which is gonna create a new Bridge (I think that's gonna be faster than webview) and then if you want to create new process to compute JS, you can either choose webview or a new bridge.
The text was updated successfully, but these errors were encountered: