Mozilla can produce near-native performance on the Web
arstechnica.com
Mozilla can produce near-native performance on the Web
1–10 of 202 posts
Re: Mozilla can produce near-native performance on the Web
#2Re: Mozilla can produce near-native performance on the Web
#3Except for running webpages scripted with Dart. It's not fast enough for that application apparently. https://news.ycombinator.com/item?id=3095519
Re: Mozilla can produce near-native performance on the Web
#4Re: Mozilla can produce near-native performance on the Web
#5Even something as simple as getting a Div to follow the mouse on anything but the simplest of pages is impossible to do without incurring ridiculous lag.
I don't know enough about them, but it seems that maybe Web Components may offer some answers by encapsulating mini Document trees which presumably exist in isolation from other components thereby reducing the penalties of dynamic CSS.
Re: Mozilla can produce near-native performance on the Web
#6Also its slightly slower (a few %) than regular JS on browsers without asm.js support.
Re: Mozilla can produce near-native performance on the Web
#7tl;dr: its not as fast as native but its much better than AT expected, and actually within 2x the speed of native. Also its slightly slower (a few %) than regular JS on browsers without asm.js support.
You sure you meant what you said here?
Re: Mozilla can produce near-native performance on the Web
#8tl;dr: its not as fast as native but its much better than AT expected, and actually within 2x the speed of native. Also its slightly slower (a few %) than regular JS on browsers without asm.js support.
> its slightly slower (a few %) than regular JS on browsers without asm.js support You sure you meant what you said here?
Re: Mozilla can produce near-native performance on the Web
#9The fascinating thing about this is that they didn't write a new JIT for asm.js. It's just their existing JIT with more information and a few new tricks. Among other things, this means that it doesn't yet have a lot of the fancy optimizations that C/C++ compilers typically have in their backends, like clever instruction selection or register allocation. It's already impressively fast, and it has the potential to get…
Spidermonkey is composed of the Baseline Compiler (JIT) and Ion Monkey (JIT), but a new AOT compiler was written, called "Odin Monkey."
Re: Mozilla can produce near-native performance on the Web
#10For most applications JS doesn't need to get any quicker. What makes web apps feel like swimming through molasses is the DOM. Even something as simple as getting a Div to follow the mouse on anything but the simplest of pages is impossible to do without incurring ridiculous lag. I don't know enough about them, but it seems that maybe Web Components may offer some answers by encapsulating mini Document trees which pre…
I would contend that network latency and the plethora of domains queried to be a greater impediment to a speedy web. DOM manipulation may be absurdly slow however it cannot hold a candle to latency hold-ups.
Most readers on HN live in a quiet and peaceful bubble of high-quality network connections, but the majority of the world is beginning to wake up to the web and they'll have to endure latency issues that we haven't experienced since "broadband" was a new concept.