This post originated from an RSS feed registered with .NET Buzz
by Scott Watermasysk.
Original Post: HttpCompression For Blogs
Feed Title: ScottW's ASP.NET WebLog
Feed URL: /error.aspx?aspxerrorpath=/blog/rss.aspx
Feed Description: ASP.NET and Blogging
Dare mentioned a lack of HttpCompression support from blog tools. Traditionally, I think this burden has fallen on the system administrator and not software tool maker. However, with ASP.NET/IIS this can be a quick fix.
You do have a couple of choices:
The first obvious choice would be to turn on IIS 6.0 compression, which from all most accounts seems to function quite well. However, this of course requires you be using IIS 6.0 (see .NET Guy for tips on getting this started)
Next, you could purchase a third party product (such as PipeBoost or XCache)
Finally, for relatively simple application (like .Text and dasBlog) you could enable HttpCompression with a simple HttpModule.
I have had good success with it in the past, but it (as with any non-IIS solution) does not handle Server.Transfer well. At worse, you could probably use it for your RSS requests and you would probably take care of 70% of your bandwidth.