Is it time to switch back to Firefox from Chrome? I remember when I originally switched around Firefox 3.5.x Chrome was much leaner and faster. Has the pendulum finally swung back the other way?
I never saw a reason to switch to Chrome to begin with. Performance was acceptable for me, while other benefits always made Firefox more useful (privacy with encrypted Sync, better add-ons and etc.). And some time ago, Firefox clearly became a leader in performance as well. All this "jumping to Chrome" was simply a hype thing IMHO, and I generally don't care about hype.
Firefox fixes save gigabytes of memory on image-heavy pages
111–120 of 203 posts
Re: Firefox fixes save gigabytes of memory on image-heavy pages
#112Earlier quoted context omitted.
Yea, I also noticed that, save for the pages with tons of images, firefox has actually been better than chrome in that respect for the last few releases. Now with this fix, I'm seriously thinking of jumping back. Then I'll finally have my sweet DownThemAll again. Many kudos to the firefox devs, performance and memory-usage is very important, and it seems they realized that before it was too late. Even with my 16GB I'…
Last I tried Firefox, pretty recently, it still needed to address some serious issues, when compared to Chrome: * Unresponsiveness due to one tab thrashing * Bad use of screen-space (bookmarks always visible, cannot disappear titlebar like in Chrome [there's only a Windows extension for that], menu-bar takes up another bar of space by default) * Launching firefox has stop-the-world behavior to check/update extensions…
Re: Firefox fixes save gigabytes of memory on image-heavy pages
#113Re: Firefox fixes save gigabytes of memory on image-heavy pages
#114Re: Firefox fixes save gigabytes of memory on image-heavy pages
#115Earlier quoted context omitted.
Why should one use bookmarks rather than many tabs? I have many concurrent projects going, and things I refer to regularly, so I just leave them grouped in my tree of tabs on the sidebar. Much more efficient than digging through nested bookmark menus, or trying to make sure the bookmarks are properly classified. Basically, my tabs are bookmarks, except tabs are integrated into the web-browser better.
> Why should one use bookmarks rather than many tabs? Because, as the parent posts point out, tabs take up memory and can cause the browser to become sluggish.
Re: Firefox fixes save gigabytes of memory on image-heavy pages
#116Earlier quoted context omitted.
Bookmarks don't save state, which is especially annoying in a time where async calls are used so heavily.
A URL should contain all of the state needed. If it doesn't then it's a poorly designed website.
Re: Firefox fixes save gigabytes of memory on image-heavy pages
#117Earlier quoted context omitted.
Firefox has to work with the internet as it is, not the internet as we wish it were.
So do users. Keeping several dozen tabs open indefinitely decreases the stability of every browser. Computers have resource limitations. 95% of websites have bookmarkable links; use them.
Re: Firefox fixes save gigabytes of memory on image-heavy pages
#118Earlier quoted context omitted.
I never saw a reason to switch to Chrome to begin with. Performance was acceptable for me, while other benefits always made Firefox more useful (privacy with encrypted Sync, better add-ons and etc.). And some time ago, Firefox clearly became a leader in performance as well. All this "jumping to Chrome" was simply a hype thing IMHO, and I generally don't care about hype.
There was a period around FF14 where FF was performing terribly for me, and Chrome was acceptably fast as ever. That was what made me switch for a while.
Re: Firefox fixes save gigabytes of memory on image-heavy pages
#119I just compared it with Chrome using the example page mentioned in article: In Firefox Nightly at the initial page load it uses around 250 MB memory and with scrolling it stays around that. In Chrome (in Canary too) initial it uses around 300 MB but scrolling keeps filling the memory indefinitely (I stopped scrolling above 1.2GB)
Chrome became very resource hungry and poor at memory management recently. Sometimes I see half blank pages when scrolling which I've never seen before on the desktop.
Re: Firefox fixes save gigabytes of memory on image-heavy pages
#120Earlier quoted context omitted.
We've been using stuff like Infinity.js ( http://airbnb.github.io/infinity/ ) for quite a while now, and it's basic functionality is to improve long scrolling panes by dynamically adding and removing elements (including images) in real time as you scroll to keep the number of elements low and the page responsive. Sites that use this technique usually feel just as responsive as if the site really did have a page with…
I don't know that I'd characterize this as a workaround. Infinity.js is definitely a good approach, but you should expect good baseline performance from the browser even without more complicated techniques.
The reason why I call the Firefox fix a workaround is because the proper way to solve the problem of 2 GB of image data on a page is by using a UITableView style wrapper.
But HTML 5 doesn't have such an element for us to make use of. The proper fix would be to add such an element to HTML itself, but obviously that's something that takes years to do and to get it adopted across all browsers.
So in the meantime tricks like what Firefox is doing are nice to help prevent inexperienced web developers who create abominably inefficient webpages from consuming too much system resources when an unfortunate victim downloads the page.