13 ms·
I'm writing really a very large app for the company I work for. We're using PhoneGap with HTML and JavaScript and have many plugins. What we are not having pro
by Limes102 15y ago
I'm writing really a very large app for the company I work for. We're using PhoneGap with HTML and JavaScript and have many plugins.
What we are not having problems with is the fact that we only really have a single thread to do everything. All I can say is that I'm glad it wasn't my idea to build it this way.
- nupark2 15y agoThis is a surprisingly often ignored limitation of the browsers. You need threads to achieve decent performance given any significant complexity, and mobile CPUs are going multi-core.
- Limes102 15y agoYep - Buttons are bad enough, but things like sliders are just the worst things imaginable!! I thought it might be worth looking into web workers, but everything seems to interact with the DOM so that's not much help either.