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
Running js2php in its PHP form (#14) shows around 75x slower performance compared to NodeJS version. Profiling the PHP code shows that the "get" function is called 5.6 million times and makes 28.1% of the time.
Member access could be implemented natively (without wrapper functions) and using __get(...) magic functions if the accessed property does not exist natively.
I would say that a performance factor of 20x should be possible and acceptable.
The text was updated successfully, but these errors were encountered:
Running js2php in its PHP form (#14) shows around 75x slower performance compared to NodeJS version. Profiling the PHP code shows that the "get" function is called 5.6 million times and makes 28.1% of the time.
Member access could be implemented natively (without wrapper functions) and using __get(...) magic functions if the accessed property does not exist natively.
I would say that a performance factor of 20x should be possible and acceptable.
The text was updated successfully, but these errors were encountered: