Even Faster Web Sites: Performance Best Practices for Web Developers

Posted by Admin 5 comments

Even Fаѕtеr Web Sites: Performance Best Practices fοr Web Developers

  • ISBN13: 9780596522308
  • Condition: Nеw
  • Notes: BRAND NEW FROM PUBLISHER! BUY WITH CONFIDENCE, Over a single million books sold! 98% Positive feedback. Compare ουr books, prices аnd use tο thе competition. 100% Satisfaction Guaranteed

Performance іѕ vicious tο thе success οf аnу web site, аnd уеt today’s web applications pull browsers tο thеіr boundary wіth augmenting amounts οf abounding calm аnd complicated υѕе οf Ajax. In thіѕ book, Steve Souders, web opening preacher аt Google аnd former Chief Performance Yahoo!, provides profitable techniques tο hеlр уου optimize уουr site’s performance. Souders’ prior book, thе bestselling High Performance Web Sites, repelled thе web growth universe bу divulgence thаt 80% οf thе time іt

Rating: (out οf twelve reviews)

List Price: $ 34.99

Price: $ 19.89

Related Post


5 Comments
Nov 5, 2010
12:24 am
#1 Techie Evan :

Review by Techie Evan for Even Faster Web Sites: Performance Best Practices for Web Developers
Rating:
This book is a follow-on to Steve Souder’s first book entitled “High Performance Web Sites”. Whereas the first book was authored entirely by Steve Souder, this newer book contains chapters authored by other experts in Javascript, Ajax, and/or Network Performance. Comparatively speaking, I tend to think of the performance tuning techniques discussed in the first book as all relatively straightforward to implement, while those in this newer book as ranging from some that are relatively straightforward to implement (e.g., how to write efficient Javascript and CSS Selector code, how to optimize image sizes, and how to flush documents early to trigger initial web page rendering as soon as possible), to others that tend to be trickier to implement, involving either the use of:

* lesser known http features (e.g., chunked encoding for incremental page rendering or low-latency data transfers from server to browser in support of near-realtime applications such as chat, stock quotes, etc), or

* still evolving technologies (e.g., Google GEAR or Web Worker API for overcoming Javascript’s single-threadedness to get more concurrent work done), or

* not yet publicly released technologies (e.g., Microsoft Research’s Doloto system that facilitates the “splitting and packaging” of a Javascript-intensive Web Application into a quick-loading initial component or cluster that enables early page rendering, and supporting payloads that are loaded more lazily or on-demand).

One theme that runs throughout this newer book is that in order to squeeze more performance out of a next generation web application, developers would have to become more and more adept with using asynchronous techniques (which could involve tricky issues); by this I don’t just mean using Ajax which could involve asynchronously pulling data from server to browser, but also asynchronous techniques for facilitating parallel component downloads, etc.

Given the cutting-edge and more complex nature of some of the discussed techniques, this book is an invaluable aid to anyone itching to experiment: it lays out a problem, suggests approaches and related tools whenever appropriate (e.g., no access to Doloto?, here are alternative do-it-yourself implementation approaches), provides lots of sample code, calls out potential gotchas and how to workaround them, and then with the support of empirical data, tells you the relative pros and cons of each suggested approach. Highly recommended!

Nov 5, 2010
12:36 am
#2 Anthony Holdener :

Review by Anthony Holdener for Even Faster Web Sites: Performance Best Practices for Web Developers
Rating:
Today’s Web developer knows that the speed of one’s site is an important measure to its overall success, and Steve Souders’ previous book, /High Performance Web Sites/ (O’Reilly), laid out what seemed to be every way to achieve good performance gains without the sacrifice of functionality or aesthetics. When I began reading Souders’ /Even Faster Web Sites/, I therefore wondered how he could possibly demonstrate fresh ways to achieve performance gains without regurgitating the content of his previous book. What I discovered as I read /Even Faster Web Sites/ was it presented all new best practices for making your web sites “leaner and meaner” without repeating the content of his last book.

/Even Faster Web Sites/ takes the latest techniques available to developers and organizes them into three performance areas: JavaScript, network, and browser. Though I believe Souder knows what he is talking about regarding web site performance, I found it refreshing this time around that he had the contributions of other experts in the field to give their ideas on performance gains in these areas.

I thought the chapters on JavaScript, especially those discussing Ajax and asynchronous techniques, were well written and gave good, new best practices to trim time off the loading of content on a site. I also appreciated the chapter dealing with Comet, as these technologies are surely a driving force for future web applications, and having best practices early in their development will only help their progress. Of the two chapters on browser performance, I found the honesty of the discussion on the downsides of using iframes most helpful, especially when their use was discussed as a viable technique for improving performance early in the book. I did find the chapter on CSS selectors extremely useful for analyzing where slowdowns in styling may exist based on browser implementation. The chapters on network performance gave a good background on common hindrances such as connection limits and poor image choices, but also walked through what I felt were performance gains that can be made through less utilized techniques like chunked encoding and better compression.

Souder finished this book with an Appendix on performance tools that can be used to help in the improvement of a web site, which I found to be immensely helpful. While many tools he listed are well known to developers, there are some I was unaware of and began making use of immediately on my own sites.

/Even Faster Web Sites/ is an excellent follow-up to High Performance Web Sites, giving new best practices for making your web sites even faster. As I see it, even hundredths of a second begin to add up when you put all of these techniques together, and most of the techniques presented in this book are practical for any web site being developed. I would recommend this book to any developer looking for ways to improve the performance of his web site, as Souder has certainly demonstrated his knowledge and expertise on improving the speed of a site.

Nov 5, 2010
12:50 am
#3 D. Vinge :

Review by D. Vinge for Even Faster Web Sites: Performance Best Practices for Web Developers
Rating:
I’ve produced Web sites for 15 years. In the “old days” it was routine to test new Web pages on a dial-up connection. Today few developers have access to dial-up for testing. Yes you can load test and calculate the time to render a page on different connections but you’ll miss the look in the developers eyes while he stares at the screen waiting for a page to render. It’s a good way to be sure that developers experience their work from the customers point-of-view, all customers.

So the next time you’re told by a developer, “oh it doesn’t matter, everyone has broadband” take away their broadband for a week and make them read this book while waiting for their pages to load.

This book provides practical instruction on how to optimize your code for a better user experience, on broadband or not. This is written for developers but is also useful information for business managers who can demand faster performance from their Web sites and their developers.

Nov 5, 2010
1:48 am
#4 Robert Szarka :

Review by Robert Szarka for Even Faster Web Sites: Performance Best Practices for Web Developers
Rating:
Steve Souders has been a leader in documenting and evangelizing techniques for improving web site performance, and his previous book High Performance Web Sites: Essential Knowledge for Front-End Engineers (or the web posting from which it evolved) is essential reading. Even Faster Web Sites is not an updating of that book, but a collection of additional advice from Souders and eight contributors. So the first thing to note is that you should probably only tackle this book if you’ve already mastered the techniques outlined in High Performance Web Sites.

The one exception to the advice above may be if you’re a web developer who makes heavy use of Javascript, since over half of this book is devoted to AJAX. The remainder of the book addresses a variety of topics of interest to web development professionals in general–optimizing images, writing efficient CSS, advanced techniques for implementing gzipping, and more.

As with Souders previous book, there is little that will be new to professionals who’ve kept up with best practices via blogs and the like, but it’s still nice to have all the information in one handy book. For those who are just starting to investigate web performance optimization, High Performance Web Sites plus Even Faster Web Sites will get you up to speed quickly.

Nov 5, 2010
2:44 am
#5 Jim Ausman :

Review by Jim Ausman for Even Faster Web Sites: Performance Best Practices for Web Developers
Rating:
Going beyond the excellent work in his first book _High Performance Web Sites: Essential Knowledge for Front-End Engineers_, this book includes great information on how to parallelize Javascript, minimize images, sprite images and write your web pages so that they don’t block on one element. This along with the more basic stuff in his first book, like turning on compression, has speed up our page delivery times by a factor of 50%.

Remember that every 1 second longer your page loads costs you 10% of your users and you can use this book to convince management to invest resources in speeding up your site.

Leave a Comment

Name

Email

Website

Previous Post
«
Next Post
»



Fatal error: Call to undefined function get_flickrrss() in /home/wirakusu/public_html/semwebprogramming.com/wp-content/themes/teslafx/flickr.php on line 11